试图获取访问令牌以响应Google,但无法弄清楚我在做什么错。
这是我到目前为止所做的:
import requests
authorization_code_req = {
'client_id':'key',
'client_secret':'key',
'redirect_uri':'http://localhost:5000',
'grant_type':'authorization_code'}
r = requests.get('https://accounts.google.com/o/oauth2/token',
params=authorization_code_req)
print (r)
答案 0 :(得分:1)
您应该以{{1}}的身份发送authorization_code_req
,而不是以json
的身份发送。因此,您的代码应如下所示:
params