获取访问令牌Google Play Android Developer API

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取访问令牌Google Play Android Developer API相关的知识,希望对你有一定的参考价值。

我使用了这个主题的代码:Unable to get the subscription information from Google Play Android Developer API

我可以从uri获取刷新令牌

https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/androidpublisher&response_type=code&access_type=offline&redirect_uri=REDIRECT_URI&client_id=CLIENT_ID

我打电话给qazxsw poi,答案是:

getRefreshToken(token from URI)

有了这个访问令牌,我可以获得有关我的谷歌android开发者帐户的信息。

问题是访问令牌在1小时后到期,我无法重新生成它。我试着打电话给{ "access_token" : "ya29.1.AADtN_XSr_9GwIybDh0fT5kt487DGYEed2sTzugp_MDOLEJAiMOTY3o17HwnvA7BIgP6", "token_type" : "Bearer", "expires_in" : 3407 } ,anwser是:

getAccessToken(token from uri)

我在JAVA的谷歌应用引擎服务器上使用此代码。

如果有人用com.google.api.client.auth.oauth2记录此方法可能会很棒。

答案

获得刷新令牌时的默认第一响应是:

{
    "error" : "invalid_grant"
}

每个下一个响应返回:

{ 
"access_token" : "****", 
"token_type" : "Bearer", 
"expires_in" : 3600,
"refresh_token" : "****" 
}

您需要从谷歌帐户中删除oAuth或在请求强制获取刷新令牌时使用“approval_prompt = force”。

以上是关于获取访问令牌Google Play Android Developer API的主要内容,如果未能解决你的问题,请参考以下文章

无法获取 google play 授权的刷新令牌

Google Play 服务返回使用非 Google 密钥签名的令牌

向 Google Play Android Developer API 发出 HTTP 发布请求

Android - 如何获取 google plus 访问令牌?

如何在android中获取google plus的刷新令牌?

Android:如何通过 Google 登录 API 获取刷新令牌?