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.

When I use the following code, $user_profile = $facebook->api('/me'); will show the info for me, the admin user, but when I switch to a test user the permissions dialog never displays for the test user to add the app and $user_profile doesn't get defined.

I can't seem to find one example of code that seems to do everything properly in terms of making sure the app is authorized and the user is authenticated. I see from the old FB developer forums that a lot of people seem to be having the same issue with the newer procedures.

Here's the code:

<?php
$appId  = "myid";
$secret = "mysecret";
$canvasurl = "http://www.example.com/myappname/";
$canvas = "http://apps.facebook.com/myappname/";
$scope  = "user_website,email,publish_stream,user_birthday,user_location,user_work_history,user_about_me,user_hometown,manage_pages,offline_access";
require_once "facebook.php";
$facebook = new facebook(array(
'appId' => $appId,
'secret' => $secret
)
);
$user = $facebook->getUser();
if ($user) {
try {
$user_profile = $facebook->api('/me');
}
catch (FacebookApiException $e) {
$user = null;
}

if (!$user) {
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => $scope,
'redirect_uri' => $canvas
)
);

echo <<<LU
<script type="text/javascript">
top.location.href = $loginUrl;
</script>
LU;
}
}
print_r($user_profile);
?>

Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

I will post my code

<?php
    $fbconfig['appid' ] = "";
    $fbconfig['secret'] = "";

    $fbconfig['baseUrl']    =   "";
    $fbconfig['appBaseUrl'] =   "";

    $user            =   null;

    try{
      include_once "src/facebook.php";
    }
    catch(Exception $o){
      echo '<pre>';
      print_r($o);
      echo '</pre>';
    }


    $facebook = new Facebook(array(
       'appId'  => $fbconfig['appid'],
       'secret' => $fbconfig['secret'],
       'cookie' => true,
    ));

    //Facebook Authentication part

    $user       = $facebook->getUser();

    $loginUrl   = $facebook->getLoginUrl(
        array(
            'canvas'    => 1,
            'fbconnect' => 0,
            'scope'         => 'user_status,publish_stream,user_photos'
        )
    );

    if ($user) {
      try {

        $user_profile = $facebook->api('/me');

      } catch (FacebookApiException $e) {
        $user = null;
      }
    }

    if (!$user) {
         echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
         exit;
    }
?>
share|improve this answer
Hooray. I got a permissions rquest pop up for one of the test users. My only issue is that after the test user gave permission it left me on my server not Facebbok. i.e. I hit 'allow' and instead of ending up at apps.facebook.com/myapp I was sent to example.com/myapp Any idea why it would redirect to my server not facebook? – Ian Sep 4 '11 at 20:24
Try and use the modified version.. – salamis Sep 5 '11 at 14:56

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.