是否有适用于Windows Phone 8的foursquare客户端库。我检查了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.
我还尝试在构建project之后添加.dll但得到了相同的错误..
答案 0 :(得分:1)
在GitHub(https://github.com/TICLAB/SharpSquare)上看到SharpSquare的源代码,没有适用于Windows Phone 8的版本。
您需要将其转换为Windows Phone库。这应该不难,只需删除对System.Web的不必要的引用并使所有请求异步。这是我对它的看法,它编译但我没有测试过它:https://dl.dropboxusercontent.com/u/73642/SharpSquareWP8.zip
答案 1 :(得分:0)
我认为你能做的最好的事情就是利用Foursquare REST API https://developer.foursquare.com/docs/
像RestSharp这样的库可以与他们合作。