motioz
motioz

Reputation: 662

PHP SDK - How to check in facebook profile user if post exists?

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

Answers (1)

Sándor Tóth
Sándor Tóth

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

Related Questions