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?
window.opener.reload(); self.close();see stackoverflow.com/questions/559355/… and similar posts – ldg Sep 14 '11 at 0:55