vote up 3 vote down star
4

I'm making an app on facebook and have chosen iframe instead of FBML. The problem i'm facing is linking to various other pages of the app. Suppose that I've hosted my app here http://fbapp.mysite.com and I want to link http://fbapp.mysite.com/page1, how should I do that inside the iframe? Linking directly to fbapp.mysite.com/page1 just redirects the whole browser window from facebook.com to fbapp.mysite.com. I still want the app to very much "live" inside the canvas page, but want to navigate to a page1. Any help will be appreciated.

flag

67% accept rate

3 Answers

vote up 4 vote down check

Instead of

<a href="http://fbapp.mysite.com/page1">link</a>

Use

<a href="http://apps.facebook.com/{canvasurl}/page1" target="_top">link</a>

This will load the URL in the topmost frame (Facebook itself), and Facebook automatically passes through any arguments (paths AND query strings) to your callback URL.

link|flag
vote up 0 vote down

Thanks for the reply, but I dont know if redirect is the right way to do this, it sounds more like a work around. FB should be having a standard solution to this problem, its just that I'm not able to find it on its documentation page. Anyone who has worked on FB applications should be able to answer this, I'm just hoping they stumble onto this question.

link|flag
vote up 0 vote down

Try setting window.location instead of redirecting or set "page1" as your default page in IIS or whatever you use.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.