- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我使用Google OAuth验证我的用户时,验证通过后,我想重定向到用户在授权之前访问的页面,所以我想将页面路径保存到用户的cookie中,所以我的实现是这样的:
def get_login_resp(request, redirect):
print(redirect)
auth_url = "https://accounts.google.com/o/oauth2/auth?" + urlencode({
"client_id": GOOGLE_CLIENT_ID,
"response_type": "code",
"redirect_uri": make_redirect_url(request, redirect),
"scope": "profile email",
"max_auth_age": 0
})
resp = HttpResponseRedirect(auth_url)
max_age = 3600 * 24
expires = datetime.strftime(datetime.utcnow() + timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT")
print(expires)
resp.set_cookie('google_auth_redirect', redirect, max_age=max_age, expires=expires,
domain=LOGIN_COOKIE_DOMAIN, secure=True, httponly=True)
print(resp._headers)
print(resp.cookies)
return resp
最佳答案
尝试各种方法以找出问题所在,但仍然失败。
所以我尝试在另一台机器(Linux 服务器)上运行服务器,它工作正常!!!
顺便说一句:我的开发 PC 是 Macbook Pro 15 英寸,2017 年,装有 macOS High Sierra 10.13.1
2020 年 1 月 14 日更新:
没有找到根本原因,但我通过将redirect_url 保存到 session 数据中解决了这个问题 ,在此解决方案中,您应该使用另一个请求检查验证是否有效,然后再次调用 google auth 进行重新验证,代码如下:
class GoogleAuthView(RedirectView):
# google auth view
def get(self, request, *args, **kwargs):
# get redirect url from url params, frontend code should pass the param in request url
redirect_url = request.GET.get('redirect_url', None)
if redirect_url:
redirect_url = parse.unquote(redirect_url)
credentials = request.session.get("credentials", None)
if (not credentials) or ('expire_time' not in credentials) or (credentials['expire_time'] < time.time()):
request.session['redirect_url'] = redirect_url # if need google auth, save redirect url to session first
else:
if redirect_url:
return HttpResponseRedirect(redirect_url)
flow = google_auth_oauthlib.flow.Flow.from_client_config(
client_config=settings.GOOGLE_AUTH_CONFIG,
scopes=settings.GOOGLE_AUTH_SCOPES
)
flow.redirect_uri = settings.GOOGLE_AUTH_CONFIG['web']['redirect_uris'][0]
authorization_url, state = flow.authorization_url(
access_type='offline',
include_granted_scopes='true'
)
request.session['state'] = state
return HttpResponseRedirect(authorization_url)
class GoogleAuthCallBackView(BasicView):
# google callback view
def get(self, request, *args, **kwargs):
state = request.session.get('state')
flow = google_auth_oauthlib.flow.Flow.from_client_config(
client_config=settings.GOOGLE_AUTH_CONFIG,
scopes=settings.GOOGLE_AUTH_SCOPES,
state=state
)
flow.redirect_uri = settings.GOOGLE_AUTH_CONFIG['web']['redirect_uris'][0]
# get redirect url from session data if exists
redirect_url = request.session.get('redirect_url') or settings.ADMIN_LOGIN_REDIRECT_URL
response = HttpResponseRedirect(redirect_url)
try:
del request.session['redirect_url']
except KeyError:
logger.info('Delete `redirect_url` in session get KeyError.')
pass
try:
flow.fetch_token(authorization_response=request.build_absolute_uri())
except Exception as e:
logger.error(e.message)
return response
# save credentials to session
credentials = flow.credentials
request.session["credentials"] = {
'token': credentials.token,
'refresh_token': credentials.refresh_token,
'token_uri': credentials.token_uri,
'client_id': credentials.client_id,
'client_secret': credentials.client_secret,
'scopes': credentials.scopes,
'expire_time': time.time() + TOKEN_EXPIRE_TIME,
}
profile_client = googleapiclient.discovery.build(
serviceName='oauth2',
version='v2',
credentials=credentials
)
profile = profile_client.userinfo().v2().me().get().execute()
email = profile['email']
user = user_manager.get_user_by_email(email)
if user:
user.username = profile['name'] # sync username from google
user.picture = profile['picture'] # sync avatar from google
user.save()
request.session["user"] = user.to_dict()
else:
return HttpResponseRedirect("/api/non_existent_user/") # show non-existent user
return response
关于django - 当我在 Django 项目中使用时,为什么 HttpResponseRedirect.set_cookie 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47447159/
当我在自定义中间件类的 process_view 中执行 request.set_cookie() 时,我不断收到此异常。这是我的 settings.py 中中间件类的顺序: MIDDLEWARE_C
我在 python 中获得了 Formwizard 的以下 django 代码。首先有两种形式: class AuthenticationForm(forms.Form): FirstN
根据Flask Documentation ,我应该能够为除了我自己的域之外的域设置一个域路径的 cookie,如下所示: resp = make_request(render_template(in
我需要为我的 Sinatra 应用程序使用 cookie。如果我使用最简单的方法是可行的: response.set_cookie('my_cookie', 'value_of_cookie') 但我
在 webapp2 documentation没有提到设置 SameSite cookie 的属性,它似乎建立在来自 WebOB 的响应处理程序上,我检查了 webOB 文档页面,它清楚地显示了 'S
在 Django 中,我尝试使用以下代码渲染模板并同时发送 cookie: template = loader.get_template('list.html') context = {'docume
我正在针对一个公共(public)站点运行 当我尝试 set_cookie 时,我得到: undefined method 'set_cookie' for # require 'rspec' req
我刚刚学习 Flask 框架,在做练习时我遇到了一个问题,出于某种原因我无法将 cookie 存储为整数,当我将变量 count 转换为存储它之前的字符串。这是我的代码: from flask imp
我在想 Pylons 的一个版本是不同的,但我找不到一种简单的方法来判断我运行的是什么版本。在第一个示例中,我相当确定它是 0.9.7 及更高版本,使用 webob 设置 cookie。此环境将 @
当我使用Google OAuth验证我的用户时,验证通过后,我想重定向到用户在授权之前访问的页面,所以我想将页面路径保存到用户的cookie中,所以我的实现是这样的: def get_login_re
我开始创建一个自定义库,我将加载该库来检查用户是否登录以及注册用户。注册尚未开始,但这并不重要... 这是有问题的部分..它不会设置 cookie: $this->load->helper('cook
我尝试运行一些提供用户管理和身份验证/登录的 flask 扩展,例如 flask-admin。问题是,每当我尝试运行将运行一个简单的用户登录/注册页面然后单击登录或注册按钮的示例之一时,我总是会收到以
我正在尝试使用 session 创建最近访问的页面的列表。我不断收到错误 AttributeError: 'Nonetype' object has no attribute 'set_cookie'
我有一个仅支持 Rails 5 API 的应用程序,并且想在 JSON 请求的响应中发送 cookie。当我使用 ActionDispatch::Cookies 在请求的响应中设置 cookie 时,
我是一名优秀的程序员,十分优秀!