标签: python google-sheets-api
虽然有几篇有关如何使用OAuth客户端ID生成读取和写入Google表格所需凭据的有用文章,但我无法理解如何在这样的情况下使用替代API密钥(令牌)上下文。
我盲目地试图将令牌字符串简单地传递到gspread.authorize(TOKEN),但不出所料,收到错误:AttributeError: 'str' object has no attribute 'access_token'
gspread.authorize(TOKEN)
AttributeError: 'str' object has no attribute 'access_token'
提前感谢任何建议
答案 0 :(得分:0)
每个method in the Sheets API都需要使用OAuth进行授权。请参阅Python Quickstart开始使用。