0

ApacheHttpを使用してJavaデスクトップ/スタンドアロンアプリケーションからアクセストークンを取得しようとしています。

    StringBuilder sb = new StringBuilder();
    sb.append("code").append('=').append(authorization_code)
      .append('&').append("client_id").append('=').append(client_id)
      .append('&').append("client_secret").append('=').append(client_secret)
      .append('&').append("redirect_uri").append('=').append("urn:ietf:wg:oauth:2.0:oob2")
      .append('&').append("grant_type").append('=').append("authorization_code");

    HttpPost httppost
        = new HttpPost("https://accounts.google.com/o/oauth2/token");
    httppost.setEntity(new StringEntity(sb.toString()));

    System.out.println(httppost.getURI());

    System.out.println(new String(
            EntityUtils.toByteArray(httppost.getEntity())));
    httppost.getEntity().getContent();

    HttpClient httpclient = new DefaultHttpClient();
    HttpResponse resp = httpclient.execute(httppost);

    byte[] ba = EntityUtils.toByteArray(resp.getEntity());
    System.out.println(new String(ba));

リクエストURLは次のとおりです。

https://accounts.google.com/o/oauth2/token

内容は次のとおりです。

code=4/uktjFRIoKS-VTwADJjO6vSYV3ZyU.Qop5zb7BIj0bOl05ti8ZT3bH57rDdgI
&client_id=128871852795.apps.googleusercontent.com
&client_secret=***********************
&redirect_uri=urn:ietf:wg:oauth:2.0:oob2
&grant_type=authorization_code

そして私は得る:

{
  "error" : "invalid_request"
}

他の同様のSOの質問を読みましたが、問題は解決しませんでした。

私は何が間違っているのですか?

4

1 に答える 1

0

私の間違い。実際には以下のコード

&redirect_uri=urn:ietf:wg:oauth:2.0:oob2

する必要があります

&redirect_uri=urn:ietf:wg:oauth:2.0:oob
于 2012-12-03T20:56:09.280 に答える