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 would like to change the location of the page url and I would strongly prefer to have the permissions request dialog open in a separate window.

This is the JavaScript im using:

  <script>
        window.fbAsyncInit = function() {
  FB.init({
    appId      : 'XXXXXXXXXXXXXXX',
    status     : true, 
    cookie     : true,
    xfbml      : true
  });
};
    (function(d){
   var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
   js = d.createElement('script'); js.id = id; js.async = true;
   js.src = "//connect.facebook.net/en_US/all.js";
   d.getElementsByTagName('head')[0].appendChild(js);
 }(document));
  </script>

This is the usual dialog that comes up, I've found this to be buggy and can be blocked by some browsers cough ie cough cough: enter image description here

And this is the preferred entire page look:

enter image description here

PHP:

 // Create our Application instance (replace this with your appId and secret).
    $facebook = new Facebook(array(
      'appId'  => 'XXXXXXXXXXXXXXXXXXXXXXXXX',
      'secret' => 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
    ));

    // Get User ID
    $user = $facebook->getUser();

    if ($user) { 
      try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');
      } catch (FacebookApiException $e) {
        error_log($e);
        $user = null;
      }
    }

    //  n or logout url will be needed depending on current user state.
    if ($user) {
      $logoutUrl = $facebook->getLogoutUrl();
    } else {
      $loginUrl = $facebook->getLoginUrl(   array(
           'scope' => 'publish_stream,user_birthday,email,offline_access',
           'next'  => 'LINK HERE',
          ));
    }
share|improve this question
Can you share the whole code? the above snippet won't prompt the user to install your app! – ifaour Nov 18 '11 at 22:52
What else are you looking for? – John Doe Nov 18 '11 at 22:53
what is triggering the auth dialog to open? if you have a look at the example.php & the documentation, you can see that it's possible to construct the login url and redirect the user to it. – ifaour Nov 18 '11 at 23:00
I added the PHP. – John Doe Nov 18 '11 at 23:15
well, this is a fail. – John Doe Nov 18 '11 at 23:34
show 1 more comment

1 Answer

Instead of attempting to subvert Facebook's JavaScript SDK, simply use the standard OAuth authentication, which allows you to redirect the user to an authentication or permissions dialog without a JavaScript popup.

See the Server-Side Flow section of the Authentication documentation and the Direct URL Example in the OAuth dialog's documentation. Note that the example URL in the latter documentation looks extremely similar to your second screenshot.

share|improve this answer
Yes! but how can I still using the Fbml facebook button? – John Doe Nov 19 '11 at 0:57
1  
The XFBML login button is part of the JavaScript SDK. Again, it would be easier to just create your own login button, compliant with Facebook's policies at facebook.com/brandpermissions/logos.php and elsewhere. – Martey Nov 19 '11 at 6:32

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.