I have publish_stream permissions set.
I am able to do the following using the graph API
- a) Post a story to the logged in user's wall
- b) Comment on the posted story
- c) Like the comment
What I am unable to do is:
- a) Like the Post itself.
When I do so, I get the (#200) Permissions error
Not sure why I get the permissions error on posting a Like on the Post given that I am able to make a post, comment on the post and even like the comment.
Code used to make a POST: $postID = $facebook->api( '/me/feed/', 'post', array( 'access_token' => $facebook->getAccessToken(), 'message' => $message) );
Code used to make a Comment on the POST:
$commentID = $facebook->api('/'.$newPostID.'/comments','post',array('message' => $comment)); WHERE $newPostID = is just the ID part of the returned $postID["id"]. The PostID format returned is fbid_postID and for posting a comment, I strip out the fbID and just use the PostID. It works
Code used to LIKE the comment created above:
$likeID = $facebook->api('/'.$commentID["id"].'/likes','post');
What throws the permissions error is LIKING the POST itself:
$likeID = $facebook->api('/'.$newPostID["id"].'/likes','post');
Hope this helps