Android 设备上的 Oauth Foursquare

发布于 2024-10-31 02:50:20 字数 464 浏览 1 评论 0 原文

我在这里使用本教程允许用户在 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);

还有其他可能有用的教程吗?

I am using this tutorial here to allow the user to sign in to Foursqaure on an android device http://blog.doityourselfandroid.com/2010/11/10/oauth-flow-in-android-app/ What are the parameters that I would use here, as foursquare only has authenticate and access token retrieval:

this.provider = new CommonsHttpOAuthProvider(
                    REQUEST_URL,
                    ACCESS_URL,
                    AUTHORIZE_URL);

Is there any other tutorials that may be useful?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明媚殇 2024-11-07 02:50:20

检查此帖子:http://groups.google.com/group/foursquare-api /web/oauth

它提到了以下 OAuth 端点

static final String FOURSQUARE_OAUTH_REQUEST_TOKEN = "http://foursquare.com/oauth/request_token";
static final String FOURSQUARE_OAUTH_ACCESS_TOKEN = "http://foursquare.com/oauth/access_token";
static final String FOURSQUARE_OAUTH_AUTHORIZE = "http://foursquare.com/oauth/authorize";

请记住,上面的博客文章和端点仅对 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

static final String FOURSQUARE_OAUTH_REQUEST_TOKEN = "http://foursquare.com/oauth/request_token";
static final String FOURSQUARE_OAUTH_ACCESS_TOKEN = "http://foursquare.com/oauth/access_token";
static final String FOURSQUARE_OAUTH_AUTHORIZE = "http://foursquare.com/oauth/authorize";

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文