我如何从 Facebook Connect 获取正确的用户数据,例如个人资料图片(当前返回 null)、名字和姓氏(现在似乎只有全名)?
问问题
4847 次
1 回答
11
总的来说,这很容易,只需要在以下方面进行一些调整config.yml
:
hwi_oauth:
firewall_name: secured_area
resource_owners:
facebook:
type: facebook
client_id: <client_id>
client_secret: <client_secret>
infos_url: "https://graph.facebook.com/me?fields=username,name,picture.type(square)"
paths:
profilepicture: picture.data.url
更多细节可以在文档中找到。
于 2013-09-02T18:37:07.543 回答