The Facebook API can be a little weird sometimes because of the data you are trying to get, and there are several parts to this question.
Limits
, , , , : Graph API.
, FB, , . , - Friend, . (, , ).
API
, Graph API, , - . API- Graph : , /. - Facebook ( ), / . , , :
// This obviously isn't valid as written, but you the params change as described
limit=fixed-value&offset=programmatic-increase&since=some-fixed-date-here
: . , :
// My example query
limit=20&since=1334555920
--> {
, . ( , n , n/2 - ):
// My example query
limit=20&since=1334555920&offset=20
---> {
, , , , 50-100 . , , .
, , . - , , , ( , # 10-30 = 20, offset = 10), .
source
share