admin管理员组

文章数量:1435859

Basically, on my website I've added a login button for facebook, and the login works fine. However, you have to refresh once you've logged in to see that you're logged in. I've looked up the problem and the codes provided did not work.

Here is the code that I'm currently using in attempt to refresh the page after a successful login:

FB.Event.subscribe("auth.login", function(response) {
   window.location.reload();
});

Although that should work, it doesn't; it's not even refreshing the page as specified in the code. Here's the code for the Facebook login button:

 <fb:login-button perms="email,user_likes,user_photos">CONNECT Bla Bla</fb:login-button>

Could anybody please suggest some kind of fix as I've been working on this for many hours and it seems somewhat of an inconvenience for users to reload after a login.

Basically, on my website I've added a login button for facebook, and the login works fine. However, you have to refresh once you've logged in to see that you're logged in. I've looked up the problem and the codes provided did not work.

Here is the code that I'm currently using in attempt to refresh the page after a successful login:

FB.Event.subscribe("auth.login", function(response) {
   window.location.reload();
});

Although that should work, it doesn't; it's not even refreshing the page as specified in the code. Here's the code for the Facebook login button:

 <fb:login-button perms="email,user_likes,user_photos">CONNECT Bla Bla</fb:login-button>

Could anybody please suggest some kind of fix as I've been working on this for many hours and it seems somewhat of an inconvenience for users to reload after a login.

Share Improve this question asked Dec 29, 2013 at 18:35 JarrodJarrod 3321 gold badge3 silver badges14 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

Try this code for your FB login button

 <fb:login-button scope="email,user_likes,user_photos"    onlogin='window.location="http://yourdomain./yourpage.php";'>Connect with Facebook</fb:login-button> 

For anybody that's still interested in an answer, for this, use the following code: Thanks to @Abhik Chakraborty for the base of the code.

<fb:login-button scope="email,user_likes,user_photos"    onlogin='window.location.reload(true);'>Connect with Facebook</fb:login-button> 

And that will then force your browser to reload the website (like a 'hard' reload).

本文标签: javascriptFacebook api does not reload after loginStack Overflow