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'm creating a facebook app and on Internet Explorer 9 it works fine. But on Firefox and Chrome when I goto the canvas page it redirects away from facebook and to my site.

Think it's something to do with how I'm redirecting people from index.php to home.php

Is there anything in this that would cause the problem :

echo("<script> top.location.href='home.php'</script>");
share|improve this question
Try self.location.href ... – webarto Oct 25 '11 at 23:44
thanks but same thing happens, instead of going to apps.facebook.com/myapp/home.php it goes to mysite.com/myapp/home.php :( – Scott Hunter Oct 25 '11 at 23:47
post app link... – webarto Oct 25 '11 at 23:48
try taking off the 'top.' part and just use location.href – Angie Jones Oct 26 '11 at 1:27

2 Answers

up vote 1 down vote accepted

Try:

echo("<script> top.location.href='http://apps.facebook.com/myapp/home.php'</script>");

or:

echo("<script>location.href='home.php'</script>");
share|improve this answer
thanks very much, the first one works great :) – Scott Hunter Nov 1 '11 at 14:55

What is the Bookmark URL you have in application settings? It should be http://apps.facebook.com/appname. I had the same issue when I mistakenly had the canvas URL in the bookmark url field.

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.