javascript - Facebook api does not reload after login - Stack Overflow

Basically, on my website I've added a login button for facebook, and the login works fine. However

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).

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745669680a4639332.html

相关推荐

  • javascript - Facebook api does not reload after login - Stack Overflow

    Basically, on my website I've added a login button for facebook, and the login works fine. However

    21天前
    60

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信