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 need my application to redirect to the site with the iframe tab (https://www.facebook.com/pages/namepage...idapp) when someone enters the app (https://apps.facebook.com/idapp)

How can I check if the app is open in an iframe tab?

share|improve this question

2 Answers

The a page parameter in the signed_request will be present when the app is loaded via a page tab app, and won't be present otherwise. Use this to determine if the app should render as a canvas app or a page tab app

share|improve this answer

Set up the canvas page URL in your app settings, and when that URL is called „redirect” the user via JavaScript, top.location.href = "//facebook.com/yourpageid/…"

share|improve this answer
Sorry, but I dont understand. My actual canvas page is www.domain.com/fbapp. How do I know when to call redirect? – Petr Pololáník Jun 13 '12 at 15:19
For example by adding a GET parameter to your canvas page URL in your app settings. – CBroe Jun 13 '12 at 15:26

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.