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 need to reload page when a facebook user logs in to my app

Say if i use

window.location.reload()

The page reloads indefinitely.. i need to reload the page only once after the user has logged in.

(Additional info:I am using Facebook Javascript SDK for authentication and PHP for MySql Queries)

share|improve this question

2 Answers

up vote 1 down vote accepted
FB.api('/me', function(response) {
  if( response.name){
window.location.reload();

}
});

It is just straight as documentation https://developers.facebook.com/docs/reference/javascript/

share|improve this answer
thanks but thats keeps on reloading – user1521848 Jul 29 '12 at 12:06
By a mean of Cookie you may able to prevent continuous reloading. – user1350140 Jul 29 '12 at 12:45

Thanks for all the replies

But the absolute problem was that there was some PHP SQL queries running along with JavaScript, So when a user logs in via java script sdk and PHP being pre proccesd from from server wasn't working for current logged in user and I don't know much about implementing cookies (although i would love to learn if you explain me here)

So to get around this i have used following logic

Reload page until JavaScript uid == PHP sdk uid That would simply need a single reload

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.