の取得に成功しましたauthorization_code
。"Error" : "invalid_request"
そして、 に対する応答を取得しauthorization_code-token exchange
ます。
authentication_code と引き換えに Google OAuth トークンを取得するための Java コードを次に示します ( HTTP 要求にHttpComponents
を
使用)。
String urlString = "https://accounts.google.com/o/oauth2/token";
String client_id = "<my_client_id>";
String client_secret = "<my_client_secret>";
String redirect_uri = "<my_redirect_url>";
String grant_type = "authorization_code";
HttpParams params = new BasicHttpParams();
params.setParameter("code", code);
params.setParameter("client_id", client_id);
params.setParameter("client_secret", client_secret);
params.setParameter("redirect_uri", redirect_uri);
params.setParameter("grant_type", grant_type);
HttpPost post = new HttpPost(urlString);
post.addHeader("Content-Type", "application/x-www-form-urlencoded");
post.setParams(params);
DefaultHttpClient httpClient = new DefaultHttpClient();
try {
HttpResponse response = httpClient.execute(post);
HttpEntity entity = response.getEntity();
System.out.println(response.toString());
DataInputStream in = new DataInputStream(entity.getContent());
String line;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
}
応答で次のエラーを取得します。
HTTP/1.1 400 Bad Request [Cache-Control: no-cache, no-store, max-age=0, must-revalidate, Pragma: no-cache, Expires: Fri, 01 Jan 1990 00:00:00 GMT, Date: Thu, 21 Feb 2013 11:39:04 GMT, Content-Type: application/json, X-Content-Type-Options: nosniff, X-Frame-Options: SAMEORIGIN, X-XSS-Protection: 1; mode=block, Server: GSE, Transfer-Encoding: chunked]
{
"error" : "invalid_request"
}
エラーの原因を正確に知る方法はありますか?
または、リクエストの誤りを見つけることができますか?