I’m writing a facebook app that iterates through comments.
I can get the user status and their comments:
$facebook = new Facebook(array(
'appId' => APP_ID,
'secret' => APP_SECRET,
));
$statuses = $facebook->api('/me/statuses/?token='.$session['access_token'],'GET',$params);
In the same way I can get the user posts:
$posts = $facebook->api('/me/posts/?token='.$session['access_token'],'GET',$params);
I was wondering if there’s a way I can get the comments from the user’s relationship change
(user went from being single to being in a relationship)
Those relationship status changes aren’t currently available via the Facebook API, thus the comments attached to them are not either. Having this available via the API has been requested hundreds of times, I don’t know why they don’t have it.