我有返回第一個330(最高限額)的URL看起來像這樣一個用戶的好友:如何使用{用戶ID} /朋友端點,以讓所有的朋友
https://graph.facebook.com/{user-id}/friends?fields=first_name,last_name&limit=330&offset=0&access_token={access-token}
並返回結構,如:
{
"data": [...], // length of 330
"paging": {
"next": ...
}
}
隨着paging.next
看起來像:
https://graph.facebook.com/{user-id}/friends?fields=first_name,last_name&limit=330&offset=330&access_token={access-token}&__after_id=100005110960070
問題出現在這裏。 當我使用這個URL時,data
數組是空的,即使用戶有超過330個朋友。我哪裏錯了?
這可能有幫助。讀這個? https://developers.facebook.com/blog/post/478/ – naveen
_「第一個330(最大限制)」_ - 330是這樣一個任意數字,我不認爲這實際上是最大限制之一使用。我認爲問題可能在於您沒有考慮到並非所有的朋友都對應用程序可見。 – CBroe