我应该在python电报bot(Google Auth)中写什么“ redirect_uri”?

时间:2019-02-14 12:21:17

标签: python google-api telegram-bot

我正在用python写电报机器人。 我想使用google auth并获取用户个人资料信息。 是否有关于如何制作的教程? 现在,机器人在本地运行。也许到目前为止,有一些本地运行的方法?

6行

flow = google_auth_oauthlib.flow.Flow.from_client_secrets_file(
    'client_secret.json',
    scope=['profile']
)

flow.redirect_uri = 'https://www.example.com/oauth2callback'


authorization_url, state = flow.authorization_url(
    access_type='offline',
    include_granted_scopes='true'
)

0 个答案:

没有答案