I am using the information on http://developers.facebook.com/docs/plugins/registration/ to register, and login users with Facebook. How would I request this permission? I've tried to use
&scope=permission,permission,etc,etc
before fields, and then after fields. Regardless, the system still says
The user hasn't authorized the application to perform this action
Any help on this issue would be much appreciated!
After registration, I try as follows and it still spit out the same error:
if ($_REQUEST) {
require 'facebook.php';
$facebook = new Facebook(array('appId' => APP_ID,'secret' => APP_SECRET));
$user = $facebook->getUser();
if ($user) {
$loginUrl = $facebook->getLoginUrl(array('scope' => 'email,publish_stream'));
$statusUpdate = $facebook->api('/me/feed', 'post', array('message'=> 'Testing posting to may wall', 'cb' => ''));
} else {
$loginUrl = $facebook->getLoginUrl(
array('scope' => 'email,publish_stream','redirect_uri' => REDIRECT_URL )
);
}
}