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 have created probably 100+ FaceBook tabs with iFrames for customers' web sites over the past year or so.

The question and problem I often face is incorporating clients' web forms into the iFrame. This is not teribly difficult when the form is developed "by hand", by that I mean a simple php form or something - but when the client has a Joomla, WordPress (more often than not) and now just today, a Drupal site with a bucket load of functionality/user interaction.

I have been under the impression that it is not possible to bring these forms into FB independently of their respective development platforms, am I incorrect here? If so, can you point me to a tutorial?

Also, the clients would like to have their FB iFrames update when their web pages update - but I have not found a definitive answer when seasrching here.

I appreciate any feedback or direction.

share|improve this question

closed as not a real question by ifaour, CBroe, Igy, Ridcully, Anders R. Bystrup Jan 21 at 7:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Developing a form to be used in a Facebook Page Tab is not different in anyway of developing a standalone form with a special case of:

  1. Your design should be of a width of 810px or 520px (based on your app settings) if you don't won't horizontal scrollbars
  2. You should be expecting a POST request with a signed_request, this is helpful if you want to show a fan gate, restrict the form to a certain location, show admin tools for page admins...etc

In fact a form within a Facebook page tab could be as simple as dropping the form URL in the page tab field in your app settings!

I suppose all the above CMSs allow you to customize the design, read HTTPS requests, build interface for admin to control the form content (or automate this), control the thank you page after form submission.

share|improve this answer
Thanks for the reply. I do understand as I mentioned above that adding forms, as I hvae done, that were developed independetly of a CMS are not usually an issue. – Jj Spelman Jan 19 at 17:14
So what's the issue? :) – ifaour Jan 19 at 17:15
THe issue I am having is when the client has a Joomla site or WordPress site and want me to include the form that was create within that framework. From say, a plug-in or a module. That is where I run into problems. – Jj Spelman Jan 19 at 17:16
Here's an example: charterandguidefishing.com. This is a Drupal site and the client would like for me to include all the forms on the home page plus another. These are clearly Drupal specific apps. – Jj Spelman Jan 19 at 17:19
So the form (block) in the page you mentioned can be reused in another page (node) that is Facebook page tab friendly (no header, footer or sidebar), right? You need to do this yourself, and once you have real coding issues post back to SO or any sister site (drupal, wordpress...etc) – ifaour Jan 19 at 17:27
show 3 more comments

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