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.

I am very new to facebook graph api, actually I just started today so I might use some help.

My code is working perfectly, I've written a simple algorithm to list people who like a certain post, but the problem is this. Here is the JSON reply I get from graph api:
{
     "likes": {
     "data": [
       {
        "name": "NAME",
        "id": "ID"
       },
       {
        "name": "NAME",
        "id": "ID"
       },
       {
        "name": "NAME",
        "id": "ID"
       },
      {
        "name": "NAME",
        "id": "ID"
       }
   ],
"count": 22
},
"id": "POST ID",
"created_time": "DATE CREATED"
}

so even though there are COUNT:22 Likes, the server returns only 4 names. Is it possible to get all the names? if so, how?

share|improve this question

3 Answers

up vote 3 down vote accepted

You can run another query on the ID of the like object asking for details (i.e. /Likes?limit=99)

share|improve this answer
exactly..thanks :) – cprogcr Sep 18 '12 at 12:49

It depands on user's privacy settings.

User's likes is not always open to the public, or to the App, and on most users is set to friends only or friends of friends.

That's why you get 22 counts, but can actually get the listing and data only of 4 - only 4 has public access to their likes.

share|improve this answer
which permission is needed to allow the full listing? – cprogcr Mar 31 '12 at 11:39
I believe this is not true since at each post, there are different names, e.g. someone who liked the first post, doesnt show on this post but shows on another post. – cprogcr Mar 31 '12 at 11:44

You could do this:

https://graph.facebook.com/'.$post_id.'/comments?limit=0 // for comments
https://graph.facebook.com/'.$post_id.'/likes?limit=0 // for likes

Using facebook graph API . Hope it helps.

share|improve this answer

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.