我正在用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'
)