我遇到了Omniauth身份验证和Rails 4的问题,因此我得到了Rails ActiveModel::ForbiddenAttributesError。
我使用的是gem 'protected_attributes'
,所以强参数应该不是问题。
我的用户模型包含以下内容:
def self.from_omniauth(auth)
where(auth.slice(:provider, :uid)).first_or_create do |user|
user.username = auth.info.email
user.email = auth.info.email
user.password = Devise.friendly_token[0,20]
user.name = auth.info.name
end
end
user.password
只是为了保持与现有Devise身份验证系统的兼容性。
AR错误表示此行:where(auth.slice(:provider, :uid)).first_or_create do |user|
正在抛出错误。
以上方法调用自:
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
def mavenlink
@user = User.from_omniauth(request.env['omniauth.auth'])
service = @user.services.initialize_or_update_via_omniauth(request.env['omniauth.auth'])
if service && service.save
sign_in_and_redirect @user #this will throw if @user is not activated
set_flash_message(:notice, :success, :kind => "Mavenlink") if is_navigational_format?
else
redirect_to root_path, error: "Error signing in with Mavenlink credentials."
end
end
end
无论这是否相关,我不确定,但我也一直在运行这个错误:
找不到路径"/auth/mavenlink/recallback"的有效映射
也许没有关联,但我想我会把它包括进来以防万一。
如有任何帮助,我们将不胜感激!
几周前我遇到了同样的问题,并通过更改下面的行来修复它。从本质上讲,您应该显式地将参数传递到查询中。
where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
你可以找到关于这个的魔鬼问题。