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
