1

我遇到了与这篇文章中描述的相同的问题

. 我们使用了几乎完全相同的代码。我已经在下面的 mehotd 中尝试了谷歌服务帐户的客户 ID 和电子邮件地址

setServiceAccountId(GOOGLE_SERVICE_CLIENT_EMAIL) OR
setServiceAccountId(GOOGLE_CLIENT_ID)

错误随 a/c id 的变化而变化。如果我使用客户端 ID,错误是

400 错误请求 {“错误”:“invalid_grant”}

如果我使用服务电子邮件 ID,则错误是

401 Unauthorized {   
"code" : 401,   "errors" : [ {
    "domain" : "androidpublisher",
    "message" : "This developer account does not own the application.",
    "reason" : "developerDoesNotOwnApplication"   } ],   "message" : "This developer account does not own the application." }

任何想法?

4

1 回答 1

2

似乎有一些证据表明 Google Play API 目前无法与服务帐户一起使用(疯狂)。这里有关于这个问题的另一个线程。您可以在此处阅读有关 Google 服务帐户的信息。您可以在此处阅读有关 Android Google Play API 身份验证的信息。

一旦您在 Google API 控制台上完成了获得 refresh_token 的操作,您就可以获得如下所示的访问令牌:

private String getAccessToken()
{

    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost("https://accounts.google.com/o/oauth2/token");
    try 
    {
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(4);
        nameValuePairs.add(new BasicNameValuePair("grant_type",    "refresh_token"));
        nameValuePairs.add(new BasicNameValuePair("client_id",     "YOUR_CLIENT_ID);
        nameValuePairs.add(new BasicNameValuePair("client_secret", "YOUR_CLIENT_SECRET"));
        nameValuePairs.add(new BasicNameValuePair("refresh_token", "YOUR_REFRESH_TOKEN"));
        post.setEntity(new UrlEncodedFormEntity(nameValuePairs));

        HttpResponse response = client.execute(post);
        BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
        StringBuffer buffer = new StringBuffer();
        for (String line = reader.readLine(); line != null; line = reader.readLine())
        {
            buffer.append(line);
        }

        JSONObject json = new JSONObject(buffer.toString());
        return json.getString("access_token");
    }
    catch (IOException e) { e.printStackTrace(); }
    catch (JSONException e) { e.printStackTrace(); }
    return null;
}
于 2012-07-10T09:54:41.550 回答