我正在尝试使用 gspread 实用程序访问谷歌文档,当我在我的谷歌文档上尝试以下代码时我成功了
import gspread
g = gspread.login('gmailID', 'password')
worksheet = g.open('GoogleSheetName').get_worksheet(0)
val = worksheet.cell(2, 1).value
print val
但是,当我为使用谷歌服务器的公司帐户尝试相同的代码时,出现以下错误:
raise AuthenticationError("Unable to authenticate. %s code" % ex.code)
gspread.exceptions.AuthenticationError: Unable to authenticate. 500 code
谁能帮我解决这个问题?