gpt4 book ai didi

python - Gdata python 谷歌应用程序身份验证

转载 作者:太空狗 更新时间:2023-10-29 23:55:08 24 4
gpt4 key购买 nike

在 gdata 下载包中的示例/电子表格之后,我已经能够使用 gdata python client.programmaticlogin 函数登录 Google 电子表格。

现在我无法登录到我的企业 gapps 'me@mycompany.com' 我是否必须通过任何其他途径?我尝试使用托管帐户类型无效。

我尝试从 gui 创建 oath2 key ,我生成了我的客户端 ID 和电子邮件 ID。在 gdata 中运行 oauth 示例需要 consumerkey 和 secret key。有人可以就此提出建议吗?

最佳答案

好的,我用下面的方法解决了它

import gdata.gauth

Client_id='xxx';
Client_secret='yyy'
Scope='https://spreadsheets.google.com/feeds/'
User_agent='myself'

token = gdata.gauth.OAuth2Token(client_id=Client_id,client_secret=Client_secret,scope=Scope,user_agent=User_agent)
print token.generate_authorize_url(redirect_uri='urn:ietf:wg:oauth:2.0:oob')
code = raw_input('What is the verification code? ').strip()
token.get_access_token(code)
print "Refresh token\n"
print token.refresh_token
print "Access Token\n"
print token.access_token

关于python - Gdata python 谷歌应用程序身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15075919/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com