Does anyone know why no matter how many comments a given graph status update object has, it will cap the comments at 25? I have a feeling it only returns a 'sample' of the actual comments on the object. How do I force it to get them all without using the FQL APIs?

link|improve this question

it doesn't cap mine at 4 at all. What's your FQL query? – ilteris Jan 25 '11 at 19:47
sorry mate, I changed the question slightly beneath you – Mitch R Mar 2 '11 at 6:03
feedback

2 Answers

up vote 0 down vote accepted

This is just the way the Graph API works. Take a look at the API docs. You get 25 at a time and have to loop through them. You can use the timestamp (created_time) of the last comment in the batch as a parameter in the next Graph API call or you can use the offset parameter. Which is what I've been doing. I was running into some screwiness using created_time. This is an example from my C# test app. Ignore the references to the PostComment object that's just a data structure I created to hold the data I'm pulling. The magic (and the process i'm referencing) is in the parameters being passed to the graph API call:

parameters.Add("offset", numPostComments);
parameters.Add("limit", 25);

I'm fairly certain you can set the "limit" to anything 25 or below.

do
{
    foreach (var comment in comments.data)
        {
            numPostComments++;
            PostComment pc = new PostComment();
            pc.Post_ID = p.Id;
            pc.Facebook_ID = comment.id;
            pc.From = comment.from.name;
            if (comment.likes != null)
                pc.Likes = (int)comment.likes;
            pc.CommentDate = DateTime.Parse(comment.created_time);
            pc.CommentText = comment.message;
            p.Comments.Add(pc);
        }
        // Create new Parameters object for call to API
        Dictionary<string, object> parameters = new Dictionary<string, object>();
        parameters.Add("offset", numPostComments);
        parameters.Add("limit", 25);

        // Call the API to get the next block of 25
        comments = client.Get(string.Format("{0}/comments", p.Facebook_ID), parameters);
} while (comments.data.Count > 0);
link|improve this answer
feedback

I hope this link will help you

How to move to the next page in Facebook JSON response using iOS SDK?

link|improve this answer
Will that move to the next page of status updates or the next page of comments on a single status update? If it is the later it won't work as I'm fetching 100+ status updates in one hit.. and to individually call for more comments on each one would be extremely slow. – Mitch R Mar 9 '11 at 0:13
Hi Mike question, and I am sorry to say that I don't know, the best way would be to try it out and check what it does – Yogesh Mar 9 '11 at 14:30
feedback

Your Answer

 
or
required, but never shown

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