我使用python在OAuth2中遇到了麻烦。我经历了大约20个不同站点的示例代码的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)
您可以将python Quickstart用作参考,因为它与Python 2.6或更高。
别忘了,您需要本地网络服务器来测试它,以便它可以连接到Internet。您可以使用
之类的东西python -m SimpleHTTPServer 8080