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 am using the Facebook -registration with the PHP-SDK libraries. The registeration processes is working correctly. I am storing the Facebook userid,user_access_token in my user table. I am integrating the Facebook Feed posting for the user reviews in the website.When the user made some reviews we need to update his Facebook Feed (Wall) without asking his FBlogin again, instead we have to use his existing access_token stored in the Database.

I am using the following lines of codes to do so,

   $facebook->api("/".$usid."/feed", "post", array("access_token" => $accestoken,     "message"=>"Welcome to the site, review ...!"));

But I am always getting the following error:

#200) The user hasn't authorized the application to perform this action thrown in facebook.php on line 543

share|improve this question

2 Answers

The message is displayed because you have not requested the permissions to publish to the user's wall (publish_stream).

You can do that by authenticating the user in facebook

For a list of available permissions, take a look at http://developers.facebook.com/docs/authentication/permissions/

share|improve this answer

The access token is invalid, you'd have to get a new one by taking the user though the OAuth flow.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.