在我的应用程序中,我使用 facebook sdk 来检索朋友的生日、位置、喜欢、个人资料图片等。但在某些情况下,我无法在生日、地点和喜好方面结交一些朋友。我得到的只有姓名和头像。我可以在我的 Facebook 帐户上看到这些详细信息。但不在我的应用程序中。可能是什么问题?谢谢
这是我的 fql 查询
select
name, hometown_location, current_location, birthday_date, uid,
pic_square, music, movies, sports, books
from
user
where
uid in (select uid2 from friend where uid1 = me())
order by name;