我有一个使用Flask编写的应用程序并尝试使用Flask-Dance(Flask-Dance Docs - Google Example)来启用Google OAuth。我得到了以下设置:
from flask import redirect, url_for, jsonify, Blueprint
from flask_dance.contrib.google import make_google_blueprint, google
from server.app import app
# Internal auth blueprint
auth = Blueprint('auth', __name__, url_prefix='/auth')
# Google auth blueprint
google_login = make_google_blueprint(
client_id=app.config['GOOGLE_CLIENT_ID'],
client_secret=app.config['GOOGLE_CLIENT_SECRET'],
scope=['profile', 'email']
)
def auth_google_view():
"""
Authenticate user with google
"""
# Not authorized
print(google.authorized)
if not google.authorized:
return redirect(url_for('google.login'))
# Authorized - check data
user_info = google.get('/oauth2/v2/userinfo')
if user_info.ok:
return jsonify({'status': 'ok', 'email': user_info.json() .['email']}), 200
return jsonify({'status': 'failed'})
# Add urls
auth.add_url_rule('/google', view_func=auth_google_view)
然后在app/__init__.py
:
from server.app.auth import auth, google_login
app.register_blueprint(auth)
app.register_blueprint(google_login, url_prefix='/google_login')
点击应用中的按钮,我转到/auth/google
然后(重定向后)我可以看到一个谷歌帐户列表供您选择。当我在Network dev工具中选择一个帐户时,我看到以下路由(缺少url参数):
https://accounts.google.com/_/signin/oauth?authuser=
http://127.0.0.1:8001/google_login/google/authorized?state=
http://127.0.0.1:8001/google_login/google
然后:
https://accounts.google.com/o/oauth2/auth?response_type=
... 全部从头开始,我看到一个“选择帐户”屏幕。
在Google API帐户中,我有一个重定向网址:
http://127.0.0.1:8001/google_login/google/authorized
在开发环境中,我设置了OAUTHLIB_INSECURE_TRANSPORT=1
和OAUTHLIB_RELAX_TOKEN_SCOPE=1
似乎路由中的第三个网址应该是/auth/google
,并尝试再次解析google.authorized
,但它没有,我只看到print(google.authorized) # False
的结果,只需点击一次谷歌应用程序内的按钮。
答案 0 :(得分:4)
make_google_blueprint
生成的蓝图默认在身份验证周期结束时重定向到/
;您可以configure this使用参数redirect_url
或redirect_to
。在你的情况下:
google_login = make_google_blueprint(
client_id=app.config['GOOGLE_CLIENT_ID'],
client_secret=app.config['GOOGLE_CLIENT_SECRET'],
scope=['profile', 'email'],
redirect_to='auth.auth_google_view'
)
编辑:同时确保您的应用设置为good secret_key
。