我正在尝试使用 Flask、Google App Engine 和 Flask-dance 在本地实现 Google 社交登录。
我遵循了 Flask-dance 作者从此链接提供的示例。
这是主文件:
from flask import Flask, url_for, redirect
from flask_dance.contrib.google import make_google_blueprint, google
from flask_dance.consumer import oauth_authorized, oauth_error
from werkzeug.contrib.fixers import ProxyFix
app = Flask('application')
app.wsgi_app = ProxyFix(app.wsgi_app)
# You must configure these 3 values from Google APIs console
# https://code.google.com/apis/console
GOOGLE_CLIENT_ID = 'my-client-id'
GOOGLE_CLIENT_SECRET = 'my-client-secret'
app.config["GOOGLE_OAUTH_CLIENT_ID"] = GOOGLE_CLIENT_ID
app.config["GOOGLE_OAUTH_CLIENT_SECRET"] = GOOGLE_CLIENT_SECRET
google_bp = make_google_blueprint(
client_id=app.config['GOOGLE_OAUTH_CLIENT_ID'],
client_secret=app.config['GOOGLE_OAUTH_CLIENT_SECRET'],
redirect_to="index_man_2",
scope=["https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/userinfo.email"]
)
app.register_blueprint(google_bp, url_prefix="/login")
@app.route("/login-gmail")
def index_gmail():
if not google.authorized:
return redirect(url_for("google.login"))
resp = google.get("/oauth2/v1/userinfo")
assert resp.ok, resp.text
return "ok"
当我访问http://localhost:8080/login-gmail时,服务器将我重定向到选择谷歌帐户页面。然后,当我选择一个帐户时,我收到此错误:
INFO 2019-07-11 14:47:13,476 module.py:861] 默认值:“GET /login/google HTTP/1.1”302 989 WARNING 2019-07-11 14:47:21,345 urlfetch_stub.py:575] 禁止剥离URLFetch 请求的标头:['Content-Length'] WARNING 2019-07-11 13:47:21,828 connectionpool.py:403] 无法解析标头(url= https://accounts.google.com:443/o/ oauth2/令牌): 预期 httplib.Message,得到 . 回溯(最后一次调用):文件“C:\Users\tah\Documents\some-name\m\src\lib\urllib3\connectionpool.py”,第 399 行,在 _make_request assert_header_parsing(httplib_response.msg) 文件“C :\Users\Tah\Documents\some-name\m\src\lib\urllib3\util\response.py",第 56 行,在 assert_header_parsing 类型(标题)中))类型错误:预期 httplib.Message,得到。错误消息:EXCEPTION IN(1982,('连接中断:IncompleteRead(35 字节读取)',IncompleteRead(35 字节读取)))('连接中断:IncompleteRead(35 字节读取)',IncompleteRead(35 字节读取))信息2019-07-11 13:47:21,884recording.py:676] 已保存;键:appstats :041000,部分:455 字节,完整:18063 字节,开销:0.000 + 0.012;关联: http://localhost:8080/_ah/stats/details?time=1562852841009 INFO
2019-07-11 14:47:21,895 module.py:861] 默认值:“GET /login/google/authorized?state=sfUHmqfKiy61fnvh1UUsVydJv3vO5L&code=4 %2FgwHWN8roL2HIxqxtBoFKySXod_jErJ0NB7ofNpdFtLwS2Zebc2rx959sPDOvUThrdlKfQEKWAj0bEbtJxBsskao&scope=email+profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+openid&authuser=2&session_state=7ea8a7963e2773849220b0eb3ddf063f9c5e3ef8.. 3331&prompt=同意 HTTP/1.1" 500 41241
从这个答案中,我了解到如果 Flask-Dance 正在使用 HTTP 生成重定向 URL,这意味着 Flask 认为传入的请求正在使用 HTTP。如果传入的请求实际上使用的是 HTTPS,那么 Flask 就会在某个地方感到困惑,主要是因为代理。但是这个答案并没有告诉我们如何修复错误。
谢谢您的回答。