OAuth応答トークンのOAuth2応答コードを返そうとしています。しかし、私のリクエストは、グーグルでゼロの結果を持つ次のエラーを返します。response_type
「コード」ではなく「トークン」に変更してみましたが、うまくいきませんでした。
OAuth 2パラメーターは、単一の値のみを持つことができます:response_type
リクエストの詳細:
scope=https://www.googleapis.com/auth/userinfo.email
client_secret=_____
response_type=code
grant_type=authorization_code
redirect_uri=http://localhost/folder/
client_id=____.apps.googleusercontent.com
code=_____
この2番目のステップのペイロードをに送信しますPOST https://accounts.google.com/o/oauth2/auth
私のリクエストの何が問題になっていますか?
編集
https://accounts.google.com/o/oauth2/token
このリクエストに使用する必要のあるURLがあることに気づきました。ただし、そのURLに変更すると、次のようになります。
HTTP/1.0 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: Fri, 27 Jul 2012 22:44:35 GMT
Content-Type: application/json
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
{
"error" : "invalid_request"
}
編集2
上記のようにを削除しresponse_type
てURLを変更すると、これが解決しました。