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 would like to post in my page using facebook-sdk

I have permission to manage my page but when I post using

fb_response = graph.put_wall_post('python put wall post',{},FACEBOOK_PAGE_ID)

return value

Something went wrong: OAuthException (#200) The user hasn't authorized the application to perform this action
share|improve this question
i think you should get publish_stream permission too (i'm a php developer so cant tell you code is right or wrong :) ) – Pooya Estakhri Mar 3 '12 at 10:30
1) get the publish_stream permission 2) append the page access_token – ifaour Mar 3 '12 at 11:49

1 Answer

You need to use the access token for the page, rather than the access token for the authenticated user. If you have he manage_pages permission, you can get the access token for any pages that the user is an administrator of by querying

https://graph.facebook.com/me/accounts?access_token=ACCESS_TOKEN

You'll then get a json collection containing all the facebook pages the user has access to, with their name, id and access token. This is the token that you need to use when performing actions on that page

details about how to do this here: http://developers.facebook.com/docs/reference/api/page/

share|improve this answer
See also wuilly.com/index.php/2011/02/28/…, possibly. – Paul D. Waite Nov 2 '12 at 0:48

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.