Reputation: 662
I'm posting in my users Facebook with this code:
$facebook->api('/me/feed/','post',$attachment);
i want to know if the user remove manually that post, how can i do that ?
Upvotes: 0
Views: 1362
Reputation: 763
After the submission you got the post id. You can use this id with client access token to check the status.
https://graph.facebook.com/POST_ID?access_token=ACCESS_TOKEN
Upvotes: 1