I have added an app to my facebook page as a tab. Once a user goes to the tab, they are redirected to authorise the app. When I tell my code to go to http://www.facebook.com/mypage/app_235082169956030, facebook shows an error page. How do I make it go to the mypage with the app one the user authorises it?
Here is the code I use to check if a user is authorised
require_once('sdk/src/facebook.php');
$facebook = new Facebook(array(
'appId' => AppInfo::appID(),
'secret' => AppInfo::appSecret(),
'sharedSession' => true,
'trustForwarded' => true,
));
$user_id = $facebook->getUser();
if ($user_id) {
$basic = $facebook->api('/me');
$fname = he(idx($basic, 'first_name'));
$lname = he(idx($basic, 'last_name'));
$fbid = he(idx($basic, 'id'));
} else {
$url = $facebook->getLoginUrl();
$auth_url = $facebook->getLoginUrl(array('redirect_uri' => 'http://www.facebook.com/mypage/app_235082169956030'));
echo "<script language=javascript>";
echo "top.location.href ='".$auth_url."';";
echo "</script>";
exit();
}