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?