Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.