我在使用Python在OAuth2中做任何事情都遇到了麻烦。我经历了来自多个站点的大约20个不同的示例代码迭代,但没有一个工作。这是我现在在文件中的内容,但它没有编译。有什么建议?提前谢谢!
import requests
from requests_oauthlib import OAuth2Session
from requests.auth import HTTPBasicAuth
from oauthlib.oauth2 import BackendApplicationClient
client_id = "xxx"
client_secret = "yyy"
authorization_base_url = 'https://accounts.google.com/o/oauth2/auth'
token_url = 'https://accounts.google.com/o/oauth2/token'
project_id = 'zzz'
redirect_uri = "http://localhost"
client = BackendApplicationClient(client_id=client_id)
oauth = OAuth2Session(client=client)
token = oauth.fetch_token(token_url=token_url, client_id=client_id,
client_secret=client_secret)
答案 0 :(得分:1)
您可以使用Python Quickstart作为参考,因为它与Python 2.6或更高版本兼容。
别忘了,您需要一个本地网络服务器来测试它,以便它可以连接到互联网。你可以使用像
这样的东西python -m SimpleHTTPServer 8080