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'm using facebook PHP SDK 3.1.1, an iFrame app can post on the logged on users wall who is already a fan of the page.

Following is the coe and it gives me error "Fatal error: Uncaught OAuthException: (#200) The user hasn't authorized the application to perform this action thrown in"

/*post starts*/
$attachment = array('message' => 'test message',
'name' => 'test app!',
'caption' => "Caption of the Post",
'link' => 'http://apps.facebook.com/phpsdk_demoapp/',
'description' => 'It is fun!',
'picture' => 'http://www.takwing.idv.hk/facebook/demoapp_phpsdk/img/logo.gif',
'actions' => array(array('name' => 'Start Learning', 
'link' => 'http://www.takwing.idv.hk/tech/fb_dev/index.php'))
);

$result = $facebook->api('/me/feed/',
'post',
$attachment);
/*post ends*/

I guess the part that takes permission from the user to post on his wall must be added to it, kindly help. Thanks

share|improve this question
2  
Obviously you are copying the code from an article or a forum without understanding the follow. I suggest you start reading the basics first (authentication and graph api ) – ifaour Aug 26 '11 at 18:09

2 Answers

You have to get publish_stream permission: http://developers.facebook.com/docs/guides/policy/examples_and_explanations/Extended_Permissions/

share|improve this answer
All you need is oauth dialog: $auth_url = "facebook.com/dialog/…; . $app_id . "&redirect_uri=" . urlencode($canvas_page); This fixed my problem, so basically I was looking for this only as I mentioned in my post. – practitioner Aug 26 '11 at 20:05

Before user accessing your app you have to get user permission to wall post. This can be achieved by

http://www.facebook.com/dialog/oauth?client_id=" . <your app id> . "&redirect_uri=" . <app redirect url> . "&scope=publish_stream,offline_access'

This will give you access to post on users wall.

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.