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 fairly new to Facebook's Graph API. I'm trying to use their Graph API Explorer to post a message to my Fan Page wall. I have the paramters setup like below:-

Req Type: POST

Post URI: https://graph.facebook.com/MY_APP_ID/feed

Name Value: { message : 'This is a test message' }

Obviously the access token is set-up automatically in the Explorer.

But for some reason I get the error (#200) The user hasn't authorized the application to perform this action when I try to make the request.

I assume I've got to set something up somewhere, but can't find anything? Any ideas?

share|improve this question

1 Answer

up vote 2 down vote accepted

See https://developers.facebook.com/docs/authentication/permissions/ - you likely don't have the correct permissions in your access token - most likely to be missing is publish_stream

share|improve this answer
I was really hoping someone wouldn't point me back to that horrible place, but thanks a lot. I'll have a read :) – Sean H Jenkins Jan 11 '12 at 16:48
Ok, I took a look and it seems Yes, I need to allow the extended permission publish_stream. I have looked at my Edit App Settings but cannot find anything, do you know how to change the permissions of the app? – Sean H Jenkins Jan 11 '12 at 16:53
You probably need to read this: developers.facebook.com/docs/authentication - If you're just testing in the Graph API explorer, just select the checkbox for publish stream in the dialog that pops up when you click 'Get Access Token' – Igy Jan 11 '12 at 16:58

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.