gpt4 book ai didi

android - 如何从android中的google plus api获取oauth 2.0 token ?

转载 作者:太空狗 更新时间:2023-10-29 16:38:24 24 4
gpt4 key购买 nike

我在从 google API 获取 oauth 2.0 token 时遇到问题。我目前正在为 android 编写应用程序,我想在其中使用三种登录方法 - 通过 facebook(已完成)、通过自定义 oauth 2.0 提供商(也已完成)和通过 google plus - 这会产生很多问题为我。我需要在设备上获取访问 token ,并将其进一步传递给后端应用程序。

我尝试使用 GoogleApiClient(PlusClient 已弃用 - 通过 http://developer.android.com/reference/com/google/android/gms/plus/PlusClient.html ), 但看不到像 getAccessToken 或类似的方法。

目前我尝试使用 socialauth 库,但由于缺乏文档(这里是一些代码)我被卡住了

private SocialAuthAdapter mSocialAdapter;
... in onCreate()
mSocialAdapter = new SocialAuthAdapter(new GooglePlusSocialAuthListener());
try {
mSocialAdapter.addConfig(Provider.GOOGLEPLUS, key_from_google_developers_console, secret,
"https://www.googleapis.com/auth/userinfo.profile+https://www.googleapis.com/auth/userinfo.email");
mSocialAdapter.addCallBack(Provider.GOOGLEPLUS,
"http://localhost:3000/api/auth/gplus/callback");
}
catch (Exception e) {
e.printStackTrace();
}

mSocialAdapter.authorize(LoginActivity.this, Provider.GOOGLEPLUS);
Log.e("TOKEN HERE ", mSocialAdapter.getCurrentProvider().getAccessGrant().getKey());

谁能帮我拿到这个 token ?无论是通过 socialauth 还是通过 GoogleApiClient 都没有关系。

最佳答案

没有关于社交身份验证的线索,但要从 Google Play 服务获取 token ,您实际上使用了另一个类 GoogleAuthUtil。

我在 https://gist.github.com/ianbarber/9607551 上写了一个要点- 相关部分:

String scopes = "oauth2:profile email"; // magic string! oauth2: followed by space sep scopes.
String token = null;
try {
token = GoogleAuthUtil.getToken(getApplicationContext(), accountName, scopes);
} catch (IOException e) {
Log.e(TAG, e.getMessage());
} catch (UserRecoverableAuthException e) {
startActivityForResult(e.getIntent(), REQ_SIGN_IN_REQUIRED);
} catch (GoogleAuthException e) {
Log.e(TAG, e.getMessage());
}
return token;

帐户名可以从GoogleApiClient Plus 中获取。帐户API http://developer.android.com/reference/com/google/android/gms/plus/Account.html

关于android - 如何从android中的google plus api获取oauth 2.0 token ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22384739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com