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'll try to be really brief and specific.Im totaly new in facebook development.I've got a custom wordpress website.I created a faceebook app in order to use facebook connect for my website.I have also created a separate fan page.I want this: When the user finds my APP in search i want him to be redirected to the fanpage. In example: http://apps.facebook.com/uno leads to the same place as http://facebook.com/uno

with different urls Please be gentle with my noobishness

share|improve this question

1 Answer

Have this in your canvas app:

<script>top.location.href='http://facebook.com/uno'</script>

This will redirect the "top" window to the page you specify.

share|improve this answer
I haven't actually created any app.I just used the tokens for facebook connect.should i just make a php with this content on my server and link my canvas there? – George Michailidis Feb 21 '12 at 18:06
yes you can do that. Though, no need for "server-side" here. a simple html page would do the job. – ifaour Feb 21 '12 at 19:35
Thank you very much it helped loads.Just curious though how do uno manages to maintain the same address in the url bar afer the redirect? – George Michailidis Feb 21 '12 at 20:56
Ahhh that's different story :-) Facebook is removing the "apps profile pages". Check this blog post. Please try accepting the answer to improve your accept rate. – ifaour Feb 22 '12 at 6:53

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.