我现在正在我的应用程序中实现omniauth功能。一切正常,除了我不能从Facebook获得名字和姓氏。这是我的型号代码。
def self.from_omniauth(auth)
user = User.where(email: auth.info.email).first
if user
return user
else
where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
user.provider = auth.provider
user.uid = auth.uid
user.first_name = auth.info.first_name
user.last_name = auth.info.last_name
user.email = auth.info.email
user.image = auth.info.image
user.password = Devise.friendly_token[0,20]
end
end
我已经为设计正确设置了强大的参数,因为我现在使用它进行默认身份验证并且工作正常。是否还需要来自facebook的名字和姓氏的其他权限?
答案 0 :(得分:23)
经过一番摆弄后,我找到了解决方案。现在我认为我们必须明确要求我们需要的字段。对我来说,修复只是将first_name
和last_name
添加到facebook
。
在我的initializers
我添加了first_name
和last_name
添加到info fields
。
info_fields: 'email, first_name, last_name'
<强>更新强>
我的完整配置文件现在看起来像这样
config.omniauth :facebook, ENV["FACEBOOK_APP_ID"], ENV["FACEBOOK_SECRET"], scope: 'email', info_fields: 'email, first_name, last_name'
答案 1 :(得分:1)
通过查看Facebook docs,first_name
和last_name
字段都是公开个人资料的一部分,因此您的权限应该没问题。
不知道这是否有效(事实上,我希望它不会),但是在实现中,我们在使用Hash访问器而不是方法时已经在生产中工作。所以:
new(
first_name: oauth_data["info"]["first_name"],
last_name: oauth_data["info"]["last_name"],
...
鉴于您的email
等字段设置正确,如果尝试可行,我会感到惊讶,但它可能值得一试。
如果失败了,您是否有任何验证或before_create
回调可能会以某种方式干扰?
答案 2 :(得分:0)
在为使用Devise + omniauth-facebook的应用程序设计OAuth流程时遇到此问题。
使用public_profile范围,您可以在auth哈希上获取name属性。
request.env["omniauth.auth"]
我的问题是用户拥有一个配置文件,并且该配置文件已自动保存(要求用户在注册时输入名字和姓氏,并在配置文件模型上进行验证)
解决方案:在omniauth服务模型中创建一个名称解析方法,您可以将request.env["omniauth.auth"]["info"]["name"]
作为参数传递。
# auth hash returns a name like "John Doe Smith"
def parse_name_from_string(ful_name_string)
name_array = name_string.split(" ") # break apart the name
# I chose to return a PORO so i can do something like parsed_user_name_from_facebook_auth.first_name
{
last_name: name_array.pop,
first_name: name_array.join(" ")
}
end