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 trying to publish actions to a user's wall using the Open Graph API.

I requested the 'publish_actions' permission, enabled the 'Enhanced Auth Dialog', my role is set to 'developer' and my app settings show 'This app may post on your behalf, including pictureabcs you viewabcked and more.'.

Requesting

$facebook->api('/me/permissions');

returns

array(1) { ["data"]=> array(1) { [0]=> array(2) { ["installed"]=> int(1) ["publish_actions"]=> int(1) } } } 

However, when I send the following post request

$data = array();
$data['access_token'] = $facebook->getAccessToken();
$data['pictureabc'] = 'http://###url###';
$facebook->api($app_id . '/liveluvcreate:viewabc', 'post', $data);

I get

Fatal error: Uncaught OAuthException: (#200) Requires extended permission: publish_actions thrown...

as result.

Any suggestions?

Best, Sebastian

share|improve this question
Is your application sandboxed? This may (or may not) be related to existing bug Can't publish opengraph actions to app admin. – Juicy Scripter May 7 '12 at 11:49
No, it is not sandboxed. I just sandboxed it but the error stays the same. – Partie Sturm May 7 '12 at 18:05
Thanks so much! That solved it :) – Partie Sturm May 7 '12 at 18:37
@PartieSturm How did you solved this problem?. Because i am facing the same problem. Can you share with me what you have done for this problem?. – sathiamoorthy Feb 28 at 6:41

1 Answer

up vote 1 down vote accepted

Probably $app_id is not the id of user owning the access_token.

You better use /me/liveluvcreate:viewabc just to be sure you publishing action to user owning access_token and who have publish_actions granted to your app.

$facebook->api('/me/liveluvcreate:viewabc', 'post', $data);
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.