I am creating my first test app on the new Facebook API, and sadly many of the examples I've seen before include deprecated code. I'm following the typical examples to authenticate someone, and then redirect them back to the app on successful authentication.
Even though I'm specifying a 'next' param with the URL to my app canvas, it always automatically redirects to the app on my server (outside of the iFrame). Even when omitting next, this seems to be the default behavior (it will not allow me to specify the app URL as the redirect_uri, says it's not owned by the app and can't use it as a valid URL).
Here is my code as it is now:
<?php
require_once 'config.php';
/* Get valid session */
//$session = $facebook->getSession();
$user = $facebook->getUser();
if($user) {
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user=null;
}
}
if($user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl(array('next'=>'http://apps.facebook.com/fgdeveloper','fbconnect'=>0,'scope'=>'read_stream,publish_stream,user_photos'));
echo '<script>top.location.href="'.$loginUrl.'";</script>';
break;
}
?>
