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.

If you register a facebook app and using Heroku's service, it will generate a sample app to you, since from few days ago, infinite loop occurs and you have no way to interact with your app. I tried to replace window.location = window.location; with window.top.location.href = "https://apps.facebook.com/xxxxxx":

//Listen to the auth.login which will be called when the user logs in
//using the Login button
FB.Event.subscribe('auth.login', function(response) {
// We want to reload the page now so PHP can read the cookie that the
// Javascript SDK sat. But we don't want to use
// window.location.reload() because if this is in a canvas there was a
// post made to this page and a reload will trigger a message to the
// user asking if they want to send data again.
//window.location = window.location;
window.top.location.href = "https://apps.facebook.com/YOUR_APPs_NAMESPACE"
});

Luckily, it solved the problem. Just a sharing here.

share|improve this question
3  
In general You really should post this in a Q & A format, that is state the question and then answer your own question in an answer (you can even do this when posting the question) – Jack Aug 17 '12 at 13:48
this didn't work for me. – v2k Sep 26 '12 at 21:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.