设计+ Omniauth +难忘的

发布于 2024-10-31 00:56:52 字数 764 浏览 3 评论 0原文

我按照 github devise wiki 上的教程进行操作: https://github.com/plataformatec/devise/wiki/OmniAuth%3A-概述

因此,我为回调创建了一个omniauth 控制器,但它绕过了正常的会话控制器,因此,未设置可记住的cookie。

对我来说解决这个问题的最佳方法是什么?

感谢您的帮助。

编辑:我的控制器代码的要点:https://gist.github.com/913164 所以我认为重定向中的登录只是设置会话 cookie,而不是可记住的 cookie。

编辑2:我还有一个用于开发人员登录的后门,并避免在我的本地计算机上进行FB连接:

  def backdoor
        if RAILS_ENV == "development"
            @user = User.first
            @user.remember_me!
            sign_in_and_redirect @user, :event => :authentication
        end
  end

也不起作用,所以我可能在其他地方遇到问题。

I followed the tutorial on the github devise wiki :
https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview

So I've created a omniauth controller for the callbacks, but it is bypassing the normal sessions controller and so, the rememberable cookie is not set.

What is the best way for me to fix that ?

Thanks for your help.

EDIT : The Gist from my controller code : https://gist.github.com/913164
So I think the sign in an redirect just set the session cookie, not the rememberable one.

EDIT 2 : I also have a backdoor for dev sign in and avoid FB connect on my local machine :

  def backdoor
        if RAILS_ENV == "development"
            @user = User.first
            @user.remember_me!
            sign_in_and_redirect @user, :event => :authentication
        end
  end

Doesn't work either, so I might have a problem somewhere else.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薆情海 2024-11-07 00:56:53

该死的,这太旧了,抱歉让它留在这里这么久。

从我在 11' 的评论中的回答来看,我忘记添加以下内容:

@user.remember_me = true

现在让我们关闭它。

Damn this is old, sorry to let this stay here this long.

From my answer in the comments apparently in 11', I forgot to add this:

@user.remember_me = true

Now let's close this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文