my app's extended permissions are not working, everytime I try to post to wall, I get this error (#200) The user hasn't authorized the application to perform this action, even though I have added in the right permissions, here is my code,
PHP:
$facebook = new Facebook(array(
'appId' => '1234456789',
'secret' => 'secret'
));
$user = $facebook->getUser();
if ($user) {
$logoutUrl = $facebook->getLogoutUrl(array(
'next'=>'http://apps.facebook.com/my_app/'
));
} else {
$loginUrl = $facebook->getLoginUrl(array(
'redirect_uri'=>'http://apps.facebook.com/my_app/',
'req_perms'=>'email,user_birthday,status_update,publish_stream,user_photos,user_videos',
'cancel_url' =>'http://apps.facebook.com/my_app/'
));
echo "<script>top.window.location='".$loginUrl."';</script>";
}
any idea why the permissions are not being set? Or why this is happening?
Thanx in advance!
