gpt4 book ai didi

python - ServerNotFoundError : Unable to find the server at accounts. google.com

转载 作者:太空狗 更新时间:2023-10-29 21:58:00 30 4
gpt4 key购买 nike

我正在使用基于以下示例的 google 身份验证。一切正常,然后当我尝试登录时突然出现此错误:

httplib2.ServerNotFoundError ServerNotFoundError: Unable to find the server at accounts.google.com

有什么地方可能是错的吗?

    from flask import Flask, redirect, url_for, session
from flask_oauth import OAuth


# You must configure these 3 values from Google APIs console
# https://code.google.com/apis/console
GOOGLE_CLIENT_ID = '<Client-ID>'
GOOGLE_CLIENT_SECRET = '<Client-secret>'
REDIRECT_URI = '/authorized' # one of the Redirect URIs from Google APIs console

SECRET_KEY = 'development key'
DEBUG = True

app = Flask(__name__)
app.debug = DEBUG
app.secret_key = SECRET_KEY
oauth = OAuth()

google = oauth.remote_app('google',
base_url='https://www.google.com/accounts/',
authorize_url='https://accounts.google.com/o/oauth2/auth',
request_token_url=None,
request_token_params={'scope': 'https://www.googleapis.com/auth/userinfo.email',
'response_type': 'code'},
access_token_url='https://accounts.google.com/o/oauth2/token',
access_token_method='POST',
access_token_params={'grant_type': 'authorization_code'},
consumer_key=GOOGLE_CLIENT_ID,
consumer_secret=GOOGLE_CLIENT_SECRET)

@app.route('/')
def index():
access_token = session.get('access_token')
if access_token is None:
return redirect(url_for('login'))

access_token = access_token[0]
from urllib2 import Request, urlopen, URLError

headers = {'Authorization': 'OAuth '+access_token}
req = Request('https://www.googleapis.com/oauth2/v1/userinfo',
None, headers)
try:
res = urlopen(req)
except URLError, e:
if e.code == 401:
# Unauthorized - bad token
session.pop('access_token', None)
return redirect(url_for('login'))
return res.read()

return res.read()


@app.route('/login')
def login():
callback=url_for('authorized', _external=True)
return google.authorize(callback=callback)



@app.route(REDIRECT_URI)
@google.authorized_handler
def authorized(resp):
access_token = resp['access_token']
session['access_token'] = access_token, ''
return redirect(url_for('index'))


@google.tokengetter
def get_access_token():
return session.get('access_token')


def main():
app.run()


if __name__ == '__main__':
main()

最佳答案

我以前遇到过这个问题,解决方法是在我的计算机上禁用 IPv6。出于某种原因,Google 和 IPv6 不能很好地协同工作。

如果您使用的是 Mac,则命令为:

sudo networksetup -setv6off wi-fi

确保在完成后将其重新打开:

sudo networksetup -setv6automatic wi-fi

关于python - ServerNotFoundError : Unable to find the server at accounts. google.com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41683683/

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