Not sure if this is what you're asking for or not, but to get the proper permissions, I first check to see if there's a user, then check to make sure that I can get to the permissions that I need. If I can't, then I forward to the loginURL from FB and ask for the proper permissions:
$user = $facebook->getUser();
if($user) {
try {
$user_profile = $facebook->api('/me','GET');
} catch(FacebookApiException $e) {
$url = $facebook->getLoginUrl(array('canvas' => 0, 'scope'=>'offline_access,publish_stream,email'));
echo "<script type='text/javascript'>top.location.href = '$url';</script>";
error_log($e->getType());
error_log($e->getMessage());
}
} else {
$url = $facebook->getLoginUrl(array('canvas' => 0, 'scope'=>'offline_access,publish_stream,email'));
echo "<script type='text/javascript'>top.location.href = '$url';</script>";
}
Hope that answers your question.