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.

in developing a facebook application, there seem to be three different pages that are involved in the process. Here is a screenshot of page type A, B, and C:

screenshot of three different types of facebook pages

page type B seems to be very important because it can be linked to from A, and it allows for LIKEs ... how do you create a page B?

share|improve this question
considering how many posts I have seen over the last year on stackoverflow that are in the same vein as this one, why am I being DOWNVOTED and CLOSED ???? ....... are you trolls also auditing the other 100,000 stackoverflow posts to determine if you approve/disapprove?? – dsdsdsdsd Jan 10 at 12:29
y'all better go DOWNVOTE this one also ... and CLOSE it for god's sake before it helps somebody: stackoverflow.com/questions/12822206/profile-app-tab – dsdsdsdsd Jan 10 at 12:33

closed as off topic by Igy, Aviram Segal, Anders R. Bystrup, rds, Oleg V. Volkov Jan 10 at 9:36

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

up vote 2 down vote accepted
  • Screen A is facebook page
  • Screen B is tab app. (App loaded from within page)
  • Screen C is canvas app. (app is loaded separately from page)

The tab app is more tightly related to the page. There is some data that comes in the signed request directly connected to the page. The best example is if the current user is liker or not (the so called fangate is implemented this way).

Steps to create different app types: When you create an app there are 2 fields sections. Page Tab URL and Canvas URL.

If need tab app like screen B (it can be both tab app and canvas app) you should provide the url for Page Tab and additionally go to this link with the correct values: https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&display=popup&next=YOUR_URL

There you can select on which page you want you app to appear as application in favourites, which in turn you can reorder as you feel fit.

example: https://www.facebook.com/dialog/pagetab?app_id=123672637&display=popup&next=http://myapp.myserver.com/

For creating canvas app additionally to the Canvas URL you should fill the namespace field.

After that your app can be accessed on https://apps.facebook.com/my_chosen_namespace/

share|improve this answer
it seems that some people refer to B as a "Application profile Page" ... but you're suggesting that it is a "tab app page" .... – dsdsdsdsd Dec 19 '12 at 11:28
App profile page is something totally different and they were removed. source: developers.facebook.com/blog/post/611 – Alexander Nenkov Dec 19 '12 at 11:30
could I ask you to edit your answer, maybe organize your explanation into a bullet point of definitions, something like: A - type blah blah NEWLINE B - type dah dah NEWLINE C - type rah rah – dsdsdsdsd Dec 19 '12 at 11:40
Done. I think that should be enough. If I add more it will become like a tutorial instead of an answer :) – Alexander Nenkov Dec 19 '12 at 12:03
1  
show 4 more comments

The second and third are facbook canvas apps

share|improve this answer
No the second is a page tab app, the third is a canvas app – Igy Jan 9 at 22:47

You need to create custom tabs. Use something like https://apps.facebook.com/static_html_plus/

share|improve this answer

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