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 recently made an app so i could have an iframe tab on my page. i want to add another tab with an iframe. Can this be done with the same app?

Can i determine which tab a request came from? Its going to be different content under each tab.

I want to keep it the same app so users will not have to grant permissions for a second app.

share|improve this question

2 Answers

up vote 4 down vote accepted

No, you can only define one tab per app. You can configure that tab to display different content for different pages, but you cannot install more than one tab to a page using the same app. You'll have to create multiple apps, but you should be able to point them at the same codebase and determine which app is requesting content to serve the proper tab.

Regarding permissions, I'd work it so that you don't do any authentication from the tab itself but instead you link them to the same installation endpoint.

share|improve this answer
Thanks, this is what i needed to know. Setting up new apps wont a problem i just wanted it a little more consolidated. – zeal May 6 '11 at 15:55

Yes. You can have multiple tabs with the same app. This is fairly common.

share|improve this answer
Do you know of any resources? Ive search through google and nothing comes up with what i need to set up a multi tab app. – zeal May 6 '11 at 15:21
Are you having difficulty adding tabs to your Fan Page? – Joey Schluchter May 6 '11 at 15:26
You can only define one tab per app. – Jimmy Sawczuk May 6 '11 at 15:36
I have an app tab added to my page already. Im having difficulty adding a second tab of the same app – zeal May 6 '11 at 15:36
1  
You can only define one tab per app in the settings, thats correct. However, look at Hooters, Outback and many other large corps. They have multiple tabs, that all access and link to an app using the same app id. We do it all the time. Sorry for the short answer before. – Joey Schluchter May 11 '11 at 17:50
show 1 more comment

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.