Android 设备上的 Oauth Foursquare
我在这里使用本教程允许用户在 Android 设备上登录 Foursqaure http://blog.doityourselfandroid.com/2010/11/10/oauth-flow-in-android-app/ 我在这里将使用哪些参数,仅作为 foursquare具有身份验证和访问令牌检索:
this.provider = new CommonsHttpOAuthProvider(
REQUEST_URL,
ACCESS_URL,
AUTHORIZE_URL);
还有其他可能有用的教程吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查此帖子:http://groups.google.com/group/foursquare-api /web/oauth
它提到了以下 OAuth 端点
请记住,上面的博客文章和端点仅对 FourSquare V1 API 有效。
V2 API 使用 OAuth 2.0。您可能想查看 Leelo 项目 以获得似乎有效的 OAuth 2.0 实现在安卓上。
check this post : http://groups.google.com/group/foursquare-api/web/oauth
It mentions the following OAuth endpoints
Keep in mind that the blog post and endpoints above are only valid for FourSquare V1 API.
V2 API uses OAuth 2.0. you might want to checkout the Leelo project for an OAuth 2.0 implementation that seems to work on Android.