适用于WP8的Foursquare客户端库

本文关键字:客户端 Foursquare WP8 适用于 | 更新日期: 2023-09-27 17:55:51

是否有适用于Windows Phone 8的四方客户端库。 我检查了Foursquare网站和这个客户端"Sharp Square",但是每当我尝试将其包含在我的项目中时,我都会收到版本不兼容的错误

install-package : Could not install package 'SharpSquare 1.0.0.2'. You are trying to
install this package into a project that targets 'WindowsPhone,Version=v8.0',
but the package does not contain any assembly references or content files that are
compatible with that framework.

我也尝试在构建项目后添加.dll,但遇到了同样的错误。

适用于WP8的Foursquare客户端库

在GitHub上查看SharpSquare的源代码(https://github.com/TICLAB/SharpSquare)没有适用于Windows Phone 8的版本。

您需要将其转换为 Windows Phone 库。这应该不难,只需删除对 System.Web 的不必要引用并使所有请求异步。这是我对它的看法,它可以编译,但我还没有测试过它:https://dl.dropboxusercontent.com/u/73642/SharpSquareWP8.zip

我认为你能做的最好的事情就是利用Foursquare REST API https://developer.foursquare.com/docs/

还有像RestSharp这样的图书馆可以与他们合作。