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'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

share|improve this question

2 Answers

up vote 1 down vote accepted

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

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

share|improve this answer
thanks. but where to put top.location? – asimkhan0001 May 22 '12 at 19:37
Well, are you running a javascript script for the page? Put it in there. You should have an HTML for the page that looks like this: <script type="text/javascript"> top.location.href = "apps.facebook.com/yourappid" </script> – dark_matter_ May 22 '12 at 19:52
I can edit only scripts in my site but not of the facebook fan page or facebook app. I am using app only for users to register and login to my site. how can i show the fan page from app address in browser.maybe put fan page url in canvas address bar or callback url. what? – asimkhan0001 May 22 '12 at 19:58
You're running an app with no ability to edit the app? – dark_matter_ May 22 '12 at 20:00
I m not talking about an app running on my own server. this is facebook app and i have a facebook app page. facebook limits to edit them. or if I can, then how? – asimkhan0001 May 22 '12 at 20:10
show 2 more comments

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.

share|improve this answer
I don't think facebook gives you base-level access to the HTML of your app/fan pages. – matt5784 May 22 '12 at 19:27

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.