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've read through a ton of threads trying to address the question of "how can I get the popup to close and the parent window to refresh" regarding a Facebook login system. I've tried everything, but because there are so many ways of implementing FB login I can't seem to get it working with the way I'm using. Here's my code:

include('./includes/facebook.php');

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

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

// We may or may not have this data based on whether the user is logged in.
//
// If we have a $user id here, it means we know the user is logged into
// Facebook, but we don't know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.

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;
  }
}

// Login or logout url will be needed depending on current user state.
if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl(array('display' => 'popup','next' => 'index.php', 'cancel_url' => 'index.php'));
}

That code is run before the html of the document starts parsing. I then load this a little bit after:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
  FB.init({
    appId  : 'MYAPPIDSTILLHERE',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true, // parse XFBML
    channelURL : './channel.html', // channel.html file
    oauth  : true // enable OAuth 2.0
  });
</script>

And further down, my login link (if the user isn't already logged in):

<a href="#" onclick="popup('<?php echo $loginUrl; ?>')" title="Login with Facebook"><img src="http://static.ak.fbcdn.net/rsrc.php/v1/y6/r/kGCxkZx-uZa.gif" /></a>

The popup() function is defined in , and the popup itself works great, but when you enter your login information the popup refreshes and you're left logged into my website in a small popup. How can I get it to close and refresh the window that opened the popup?

share|improve this question
put some JavaScript in your return URL page that does what you want based on the response from FB. – ldg Sep 14 '11 at 0:35
Not the best coder... could you give an example please? – Andrew Sep 14 '11 at 0:43
It appears as if the next and cancel links aren't working because when I change them nothing happens. – Andrew Sep 14 '11 at 0:52
it would be something like window.opener.reload(); self.close(); see stackoverflow.com/questions/559355/… and similar posts – ldg Sep 14 '11 at 0:55
I can't even control what happens after the user logs in through the popup. Next and Cancel in getLoginUrl() aren't working. That function is working though because if I change display to post it changes the page that loads in the popup. – Andrew Sep 14 '11 at 1:00
show 2 more comments

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.