Reputation: 72
I've got a site and setup facebook connect for users to login with facebook, which is working fine. now if I type my app url in browser it opens nothing but blank page with facebook logo etc. I want to show users fan page when they type apps address. like when we type http://apps.facebook.com/uno then it shows us their fan page http://www.facebook.com/uno
Upvotes: 1
Views: 683
Reputation: 90
I use top.location.href, this should redirect the page within Facebook.
Ex: top.location.href = "apps.facebook.com/yourappid"
Upvotes: 1
Reputation: 6609
Do you have access to the html of the page? If so, try something like this:
<p><META HTTP-EQUIV=REFRESH CONTENT="1; URL=http://www.facebook.com/uno"></p>
It will redirect the browser to the fan page.
Upvotes: 0