我正在尝试使用 gspread Python 库使用 oauth2 访问我的谷歌电子表格。我是 Oauth2 的新手并了解它的好处。但我无法使用它。到目前为止,我已经访问了https://code.google.com/apis /console/并生成 CLIENT ID、SECRET 和 REDIRECT URI。
credentials = SignedJwtAssertionCredentials('developer@example.com', SIGNED_KEY, scope)
根据 Gspread Docs,我需要一个 SIGNED_KEY 对象。我如何得到它?
一个例子会很有帮助。