If I have 10 friends how do i get the latest status for each of them and then post a comment on all of these statuses?
how do you get the post ID?
$facebook->api('/'.$POST_ID.'/comments','post',array('message' => $comment));
|
If I have 10 friends how do i get the latest status for each of them and then post a comment on all of these statuses? how do you get the post ID?
|
|||
|
|
|
I can't find a way to get friends statuses ordered by date from the Graph API, so you'll have to use FQL. This query will get you the 10 most recent status updates by your friends:
There is no guarantee that these 10 will come from different friends since there is no way to execute a From here, you can loop through these results and set If this is for a public app you're building, you'll want to look at combining these 10 updates together into a single batch.request to keep from running into the API call limits. |
|||
|
|