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.

when someone visit my app, its asking permision. after user click login buton and authorizess app it still required manually refresh.

ı searched and found same problem with me:

basicly my problem is:

http://forum.developers.facebook.net/viewtopic.php?id=108432

http://forum.developers.facebook.net/viewtopic.php?id=108498

ı tried this solution but its not working.

FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
share|improve this question
Log a bug at developers.facebook.com/bugs – BK. Feb 8 '12 at 6:24

1 Answer

up vote 1 down vote accepted
FB.Event.subscribe('auth.login', function(response) {
  window.location.reload();
});

You cannot blindly reload the window. Look at the response first (for debugging either put a console.dir(response); or a debugger; so you can see the structure of the response object .... or just read the documentation to see the structure) and determine what it is telling you, only reload the page when necessary.

share|improve this answer

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.