Iโm trying to check the results and achievements using the extended permissions of publish_actions, but when I add it, it doesnโt appear on the Permission Request page. It is like ignoring it.
I tried a couple of different ways:
$loginUrl = $facebook->getLoginUrl(array('scope' => 'publish_actions', 'canvas' => 1, 'fbconnect' => 0, 'redirect_uri'=>config_item('facebook_url'))); $loginUrl = 'https://www.facebook.com/dialog/oauth?' . 'client_id=' . config_item('fbappid') . '&redirect_uri=' . urlencode(config_item('facebook_url')) . '&state=' . $_SESSION['state'] . '&scope=publish_actions';
Both methods do not work. Has anyone else been lucky to check this out?
Link to the code here: http://developers.facebook.com/blog/post/539/?ref=nf
source share