我对Omniauth&有this solution。 Github实施并且工作正常,但在过去几个月的某个时候它停止了工作。
我尝试登录时遇到的错误是:(422)您想要的更改被拒绝。
特别是在我看到的Heroku日志中:
ActiveRecord::RecordInvalid (Validation failed: Password can't be blank):
app/models/user.rb:18:in `create_from_omniauth'
app/models/user.rb:14:in `from_omniauth'
app/controllers/sessions_controller.rb:4:in `create'
创建用户时是否需要保存凭据?
我的用户模型:
def self.from_omniauth(auth)
where(auth.slice("provider", "uid")).first || create_from_omniauth(auth)
end
def self.create_from_omniauth(auth)
create! do |user|
user.provider = auth["provider"]
user.uid = auth["uid"]
user.name = auth["info"]["nickname"]
user.email = auth["info"]["email"]
user.image = auth["info"]["image"]
end
end
会话控制器:
class SessionsController < ApplicationController
def create
user = User.from_omniauth(env["omniauth.auth"])
session[:user_id] = user.id
redirect_to root_url, notice: "Signed in!"
end
def destroy
session[:user_id] = nil
redirect_to root_url, notice: "Signed out!"
end
end
答案 0 :(得分:1)
Facebook的omniauth错误“你想要的改变被拒绝了” 可能因为您在模型中设置的验证而出现。我不得不为有一个唯一电子邮件的用户重构我的验证,当用户尝试使用相同的电子邮件登录时,该电子邮件无效。
查看您的日志。 heroku logs -t
答案 1 :(得分:0)
看起来您要么在User
模型中验证密码字段的存在,要么使用has_secure_password
来验证密码字段。
如果您自己进行验证,则可以在验证中添加:if => :password_changed?
之类的子句。
如果您使用的是has_secure_password
,则取决于您使用的是哪个版本的Rails。任何these two更改的版本(我相信只有Rails 4)支持将validations: false
选项传递给has_secure_password
。否则,除了在创建用户时设置随机虚拟密码然后让他们立即更改密码时,除了可能没有真正好的解决方案之外。
答案 2 :(得分:0)
当我的gitlab服务器上的时间不同步时,我遇到了这个问题,我重启了ntpd,它纠正了服务器上的时间并解决了问题