Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I think you need to provide some code, the 200 Error is pretty generic: google.com/… – hakre Aug 13 '11 at 9:20
@hakre: I know its a pretty generic error hence the confusion...see main post for code. – Ash Wahi Aug 13 '11 at 20:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.