Reputation:
Using the Facebook PHP SDK, I'm getting the following error when I try to post a status update:
Fatal error: Uncaught OAuthException: (#200) The user hasn't authorized the application to perform this action
These are the steps I've taken:
Get code:
https://graph.facebook.com/oauth/authorize?client_id=FB_APP_ID&redirect_uri=REDIRECT_URI
Get access token:
https://graph.facebook.com/oauth/access_token?client_id=FB_APP_ID&code=CODE&client_secret= FB_SECRET&redirect_uri=REDIRECT_URI
Attempt the status update:
require_once(facebook.php);
$fb = new Facebook(array(
'appId' => FB_APP_ID,
'secret' => FB_SECRET
));
$post = $fb->api('me/feed', 'POST', array(
'access_token' => ACCESS_TOKEN,
'message' => 'hello world!'
));
I don't see any settings in my application that would authorize the application to do this, but maybe I'm missing something. Any suggestions?
Upvotes: 7
Views: 31127
Reputation: 918
Make sure you ask for extended publish_stream
permission when you're requesting code (added as the third parameter):
https://graph.facebook.com/oauth/authorize?client_id=' . FB_APP_ID . '&redirect_uri=' . REDIRECT_URI . '&scope=publish_stream'
Hope this helps.
Cheers!
Upvotes: 12
Reputation: 374
I put here some more information:
Mark's replied above has lead me to the right direction. But it took me another 5 hours to figure out the solution.
So, here is the result for omniauth.rb:
provider :facebook, ENV['FACEBOOK_KEY'], ENV['FACEBOOK_SECRET'],
:scope => 'email,user_birthday,publish_actions'
Upvotes: 1
Reputation: 1003
I had the same problem and this post really helped me out http://facebook.stackoverflow.com/a/8502709/965536
The only difference with my problem was that I was using the PHP SDK but essentially it works the same. I used the api call
$permissions = $facebook->api('/me/permissions');
You can then run your checks
if(isset($permissions['data'][0]['publish_stream']) && $permissions['data'][0]['publish_stream'])
This works for me but someone may have a better answer. Also you should wrap your publish post stream in a try catch
Hope this helps.
Thanks
Upvotes: 6
Reputation: 877
Have you taken the other steps required to connect the user with your app and get them to authorize your app to perform these actions? You need to register the users then call showPermissionDialog to let them log in and authorize your app. That's what this error is telling you.
Upvotes: 0