我需要在下一個領域獲取用戶的好友資料:身份證,姓名,性別 ,生日,城市,國家,profileUrl,PIC,pic_small, pic_big,is_app_user。獲取好友資料與圖形API
在我使用FB.Data.query之前,現在已經廢棄了。
FB.Data.query('select uid, first_name, last_name, name, pic, pic_small, pic_big, birthday_date, sex, current_location, profile_url, is_app_user from user where uid in (select uid2 from friend where uid1 = {0}', uid).
如何取得正在使用應用程序的朋友?
我可以得到所有字段,我需要,但例如,我需要做圖片我需要額外的請求。我可以在單個請求中獲得所有必需的字段嗎?
都能跟得上。只有'FB.Data。*'方法已被棄用,請參閱http://developers.facebook.com/blog/post/561/ –
上的詳細信息非常感謝。但第二個變體不適合我,因爲太多的請求。 [FQL](http://developers.facebook.com/docs/reference/fql/「FQL」) - 我需要什麼 –