I am very new to facebook graph api, in fact I just started today, so I could use some help.
My code works fine, I wrote a simple algorithm to list people who like a certain position, but the problem is this. Here is the JSON response I get from the api chart:
<br/> {<br/> "likes": {<br/> "data": [<br/> {<br/> "name": "NAME",<br/> "id": "ID"<br/> },<br/> {<br/> "name": "NAME",<br/> "id": "ID"<br/> },<br/> {<br/> "name": "NAME",<br/> "id": "ID"<br/> },<br/> {<br/> "name": "NAME",<br/> "id": "ID"<br/> }<br/> ],<br/> "count": 22<br/> },<br/> "id": "POST ID",<br/> "created_time": "DATE CREATED"<br/> }<br/>
so even if there is COUNT: 22 Likes, the server returns only 4 names. Is it possible to get all the names? if so, how?
cprogcr
source share