使用Python请求库获取Google的访问令牌

时间:2019-03-27 19:11:12

标签: python python-requests access-token google-oauth2

试图获取访问令牌以响应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)

1 个答案:

答案 0 :(得分:1)

您应该以{{1​​}}的身份发送authorization_code_req,而不是以json的身份发送。因此,您的代码应如下所示:

params