我正在django应用程序中设置Google Oauth 2。我能够获取代码,但是当我尝试将其交换为访问令牌时,出现了Bad Request
错误。这是我的代码:
code = request.GET['code']
state = request.GET['state']
access_token_url = "https://www.googleapis.com/oauth2/v3/token"
payload = {
'grant_type' : "authorization_code",
'client_id': CLIENT_ID,
'client_secret': CLIENT_SECRET,
'code': code,
'redirect_uri': "http://127.0.0.1:8888/home",
}
payload = urllib.urlencode(payload)
r = urllib2.Request(access_token_url, payload, headers={"Content-type" : "application/x-www-form-urlencoded"})
response = urllib2.urlopen(r)
有什么事吗
当我使用POSTMAN(Google Chrome应用)尝试相同操作时,
{
"error": "invalid_request",
"error_description": "Required parameter is missing: grant_type"
}
我知道这里也有类似的问题,但是我仍然无法找出错误。
最佳答案
这是一个愚蠢的错误。我输入了错误的redirect_uri
。无论如何,来自Google API的错误消息并没有太大帮助。