Asim
Asim

Reputation: 72

How to redirect app page to fan page in facebook?

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

Answers (2)

rastafarianmenagerie
rastafarianmenagerie

Reputation: 90

I use top.location.href, this should redirect the page within Facebook.

Ex: top.location.href = "apps.facebook.com/yourappid"

Upvotes: 1

Nathan Tornquist
Nathan Tornquist

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

Related Questions