How do I add tabs to my facebook app? - facebook

I realize there is already a similar question, but there aren't any good answers.
I looked all around the facebook developer app, and there isn't an automated way to do this.
Please help!

If your app is an iframe app, fbml will NOT be parsed by facebook. So you can't use fbml in an iframe app. The only thing you can use in iframe apps is the XFMBL or serverfbml version which only supports a little subset of the fbml tags.
See here and here for more details on xfbml and which tags are supported (fb:tabs is NOT)
So I would rather use jquery UI tabs or something similar and customize it to have the facebook look'n'feel if I wanted tabs in my application :)

I think the problem might be that you cannot use the legacy FBML anymore for new apps. At least that is what I am told.
You might check this developer page and see if the rabbit hole opens up any more for you.

Related

Are FMBL tabs still possible on Facebook?

Or they are dead now?
What is the next alternative for facebook tabs?
I want a HTML/PHP page using FMBL on my facebook page, but I am not sure if it is still possible.
FBML is deprecated, the "Static FBML" App is not available anymore.
You could try this now: https://www.facebook.com/staticHTML
I did not test it though, and the best way to create tabs is to create an app on your own:
https://developers.facebook.com/apps
It´s not really hard to do, tabs are just iframes and you can program the pages like a real website. Just keep in mind that you need a server with SSL for canvas apps and tab apps.

Facebook iframe canvas friend selector

I am in the process of converting my FBML application to iframe as per Facebook's new requirements:
No new FBML applications We will stop allowing new FBML applications, but will continue to support existing FBML tabs and applications. Instead, we recommend using IFrames.
--Facebook Roadmap http://developers.facebook.com/roadmap
Now my application allows you to post your creation to another users wall (or a fan/group page). My old application used the FBML fb:friend-selector to allow the user to pick a friend, and it would grab the id of them, and post on their wall using FBJS Facebook.streamPublish.
My question is, how do i go about doing the same thing in an iFrame? As far as i am aware, the only option i have is:
Use FBML in the iframe and have the js SDK turn it into an ugly, hard to access iframe (which also defies the point of sticking it all in a iframe in the 1st place, as it is going to be removed at somepoint?)
Create my own friend selector using graph api or something. Have yet to see a working example of that in action, makes me wonder if it is possible.
Are there any other options out there, or does anyone have a working custom friend selector in an iFrame?
Thanks in advance :)
You can accomplish this with XFBML in the iFrame (the same way you would handle this on an off-canvas FB Connect application). Here's a post with more details.

Deprecating FBML

As you probably already know (or read quote at the end of this post), Facebook is deprecating FBML in favor of iframes for developping applications.
I am currently launching a new browser plug in and need a landing tab on my facebook page with personalized install buttons and all the useful features one can wish to have on a fan page.
However, I cannot use an iframe in my page because Facebook forbids it (see SO related question here) and I am told not to use FBML because it is being deprecated.
Question is the following: What should I use then ?
(I did ask my question on the fbexchange website but got no answer so far (posted 3 days ago))
Quoted from http://developers.facebook.com/docs/reference/fbml/
We are in the process of deprecating
FBML. If you are building a new
application on Facebook.com, please
implement your application within an
iframe, using our JavaScript SDK and
Social Plugins. While there is still
functionality that we have not ported
over yet, we are no longer adding new
features to FBML.
Although Facebook are deprecating FBML they will continue to support it for applications that are currently built with it. What they mean by deprecation is that they will not allow any NEW applications to use FBML come 2011. You have two choices as far as I can see:
Facebook have confirmed that pages will have iFrames when FBML is deprecated. So you can wait for this change to happen and then use your iFrame.
Make your application with FBML NOW and it will be fine, however, obviously this is not a good long term solution.
If your launch is imminent then my advice would be to bite the bullet and create both the iFrame and FBML version and simply switch when iFrame's become activated for pages.
This should no loner be an issue -- iFrames are now supported on Page tabs:
http://developers.facebook.com/blog/post/462/

FBJS, FBML, and Dialogs

Okay since I have little experience with this stuff and the Facebook documentation is very scattered, I figured I would ask StackOverflow.
I am making an iFrame Canvas Facebook application using FBJS and some PHP. I would like to make a Dialog box that displays a form for the user to enter some information to then be sent on to a database. I know how to program a good chunk of it but the main problem arises in just getting the dialog WITH the form up on the page. What would be the best way of doing so?
Thanks in advance!
I've been developing Facebook apps since almost the beginning, and yes, the current documentation is very scattered! First, you should be using FBJS in an iframe app. FBJS was designed for use in FBML apps (non-iframe based). The only place you have to use it is in a Page tab. Unless you mean the Facebook javascript API.
You didn't mention what dialog you were trying to create. Here is a link to Facebook's "dialogs". http://developers.facebook.com/docs/reference/dialogs/
But I don't think that is what you are looking for. If you are trying to post to someone's wall, then this is the link you want. Scroll down to the "Dialog" section. http://developers.facebook.com/docs/reference/javascript/
But if you are just trying to prompt for information and save it, you can use plain javascript and html. You can even use libs like jquery, prototype, etc.

How should I customize my Facebook page?

Okey, so I have a business Facebook Page like many others. And I want to customize it like many others have. But Facebook (henceforth FB) documentation is really bad.
So I go and edit my page and there I find Facebook Static FBML application. So far, great, and I can even use standard HTML to edit it. And then there is also FBML which I can use to make more advanced customization, like show something for people who "Like" and something else for others. Pretty straightforward. But then i notice that Facebook is deprecating FBML and recommend me to use JavaScript SDK and Social Plugins.
So what does this mean for me? Can I customize my site this way or not?
The documentation for JavaScript SDK and Social Plugins is worthless and very general, how do these apply for my Page customization?
But Facebook Static FBML application it self is an application i guess. Will it work in the future?
What is the best way to customize my FB Page and add tabs and so on?
What should I do?
ANSWER (for lazy people):
While Facebook Static FBML application might be working in the near future, it seems like building applications yourself is the right way to go.
Build an application: http://www.facebook.com/developers/createapp.php
Also you do not need the FBML since you can do all that is needed with the graph-api.
Graph-API doc: http://developers.facebook.com/docs/api
Also, by using the iframe canvas when building apps this allows you to host your page tabs where ever you want allowing you do use any coding language you want.