python gspread授权oauth2凭据

时间:2014-10-02 06:38:10

标签: python oauth gspread

我怎样才能使用我的oauth凭据?我有错误的http响应gspread.httpsession.HTTPError :( 谁能告诉我我的代码有什么问题?

import datetime
import gspread
import json
import MySQLdb
from oauth2client.client import OAuth2Credentials


# Get access token from database
data = json.loads(row['access_token'])
credentials = OAuth2Credentials(
    data['access_token'],
    "1*************************k.apps.googleusercontent.com",
    "9t*****************W",
    data['refresh_token'],
    datetime.datetime.now(),
    "https://accounts.google.com/o/oauth2/token",
    'user-agent'
)

gc = gspread.authorize(credentials)
wks = gc.open_by_key('1*****************W')

哪个行包含来自数据库的数据(它具有google oauth返回的访问令牌)? m(_ _)m

1 个答案:

答案 0 :(得分:1)

我在使用Oauth2Credentials进行身份验证方面遇到了麻烦。我的建议是使用googles Oauth2工作流来创建凭据。此外,请务必使用' https://spreadsheets.google.com/feeds'作为证书的范围。

我目前正在使用此流程,我的通话工作正常。