Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi i want to get list of my fabebook friend ids with paging of 100 users. The problem is that if i set hte FQL to

        NSString *fqlString = @"SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) LIMIT 300";

It returns me as expected the only first 300 users in the table with out any reference to next page.

Result: {
data =     (
            {
        uid = 1519xxx;
    },
            {
        uid = 9806xxx;
    }

....
);

}

if i request friends with [FBRequest requestForMyFriends] it returns me all of my friends and additionaly a paging key with the url object for next page.

The question is how can i tell with FQL to give me lists of 100 users with paging to next 100 users.

share|improve this question

1 Answer

up vote 2 down vote accepted

The Graph API returns paging links; FQL does not. So you’d have to do that yourself, by making another query including an OFFSET parameter.

share|improve this answer
how do you mean by making another request including Offset? – Ilker Baltaci Oct 17 '12 at 10:11
SELECT … FROM … WHERE … LIMIT 10 OFFSET 10 – CBroe Oct 17 '12 at 10:23
i think i have got point you mean i need to calculate the number of total friends and totally make n/offset requests to server – Ilker Baltaci Oct 17 '12 at 10:48
is it possible to control the size of pages in grapapi? – Ilker Baltaci Oct 17 '12 at 10:49
1  
developers.facebook.com/docs/reference/api, section “Paging”. Please start reading docs before asking. – CBroe Oct 17 '12 at 11:01
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.