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.

HTML forms are used to pass data to a server. A form is essentially a container that can be used to hold any amount of any subset of several types of data.

learn more… | top users | synonyms (1)

-4
votes
1answer
29 views

Filling out a form with Facebook data [closed]

What I want seems simple enough, still I have read countless pages and questions and can not find a simple example. I have an existing form on my page. When someone clicks a facebook button, I want ...
0
votes
1answer
27 views

Make FQL query on form submit and continue or cancel submitting based on query result

I have a small question. I'm not able to continue or cancel form submitting based on FQL query result (if user likes a few pages) in FB Javascript SDK. It's probably because of FB queries are async. ...
0
votes
0answers
20 views

Facebook form submission - intial POST request

I am trying to include a form in my facebook app. The form works just fine as standalone php page - but the intial facebook POST request submits the (empty) form when the app loads. GET works but the ...
-2
votes
1answer
50 views

Jquery form post get me out of facebook canvas? [closed]

i am developing a facebook app, i have two submit button on a page, I am having a little problem in jquery form post, when i post a form through jquery it get me out of facebook canvas, it works fine ...
-2
votes
1answer
117 views

How to post on facebook using google forms [closed]

I can see there are some pages in facebook which allows posting on facebook page via google forms. I am new to this stuff. Can any one walk me through this ?
0
votes
3answers
74 views

onSubmit without a form

So I have a textfield ( <input type="text"/> ) where I want to run a function when the user presses enter/submits it. Now, onSubmit looks like the best solution. Sadly this requires a form ...
0
votes
1answer
140 views

Auto submitting HTML form

I have a Javascript function which gets two variables. I have then got the JS to generate a line of HTML, this being a form filled with these two variables. Ive set the method to post to the server, ...
-2
votes
1answer
131 views

insert part of link via text box, form - get profile picture on click?

I only know ccs and html so the following is quite hard for me to do and understand Im wanting a text box form that a user can enter a facebook user id, press a button and load the profile picture ...
0
votes
1answer
43 views

Django: Changing default reset_password views and forms?

I have been using Django's built in password reset views and forms to great success, but I'm not sure how: I could customize the error messages in each of the forms' field validation. For instance, ...
1
vote
0answers
40 views

post article to twitter and facebook automatically

Can I create a form in which if I click submit button, the form content will automatically posted to my facebook and twitter account?
0
votes
1answer
91 views

Incorporating web forms into Facebook tabs/iframes [closed]

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. ...
0
votes
0answers
65 views

Facebook app form doesnt work in IE and Safari

Im creating a facebook application which contains a registration form. Well.. This is works perfectly in Chrome, FF, and Opera, but does not work in IE and Safari. When I click on the submit button in ...
1
vote
1answer
323 views

How to start session whether user is logged in via facebook connect or my own form?

I provide two login/reg options: facebook connect and my own login/reg form. I want to take users to the same page after they have logged in whether they use fb connect or my form. I can make it ...
0
votes
1answer
77 views

Facebook App Form Integrating

I have a simple php mailer script I often use on sites and I am trying to integrate it into a facebook app. The app is running through Heroku as usual and is set up correctly. The Form however is not ...
2
votes
1answer
63 views

Auto-filling forms with facebook graph

I have two scripts written by my co-workers for auto-filling a form with information from the facebook graph-api. I am trying to figure out which has been coded in a more efficient style? This is the ...
2
votes
2answers
963 views

Fill form using facebook data

I would like to allow users to press a button on my page that will autofill a form with their first name, last name, and e-mail address, provided that they are logged into Facebook. If they are not, ...
0
votes
0answers
204 views

Post form, signed_request and session in Facebook Canvas

I'm developing a Facebook app that will run in canvas. This is the scenario (I think it's very common). This is all server-side implementation. Being: APP_URL: https://apps.facebook.com/xxxxxx/ ...
0
votes
1answer
89 views

Facebook registration with custom field

I have read through the facebook documentation but I am confused on this particular area. I would like to have an option to 'signup via facebook' on my website. By 'signup' I mean facebook will just ...
0
votes
0answers
17 views

Canvas removing form default values

I have a standard form as part of a page that is being pulled into the facebook canvas, the form has default values that appear if I go directly to the site however inside the facebook canvas all of ...
0
votes
1answer
95 views

multiple forms on asp.net page for submitting feedbacks

I want to send data to server by enclosing it in a form. However, in asp.net I can't use more than one form with runat=server attribute. Then what is the use of using multiple forms on asp.net page. I ...
0
votes
1answer
403 views

single page facebook app with embedded form processing - signed request issue

I am working on my first facebook fanpage app with registration form processing on the same page. The app works like this: checks if a facebook user is logged in or not -> if not, asks for login, ...
0
votes
1answer
222 views

Trying to send a form to another domain inside Facebook iframe

Trying to send a form to another domain inside Facebook iframe on a Facebook app. I have a form similar to this: <form id="email_capture" action="{GOES TO ANOTHER DOMAIN}" method="POST"> ...
1
vote
1answer
52 views

Using forms in facebook apps in PHP

I'm trying to use a standard form in a facebook application the form code look like this <form method="POST" action="/bristolhouse/"> <input type="hidden" name="kind" value="admin" /> ...
-2
votes
1answer
161 views

Feedback and Facebook Code Clash somewhere

I m creating a test page everything was going fine until i add popup facebook like box facebook code clash with the feedback form i tried so many hours to resolve that but i can't any one of them is ...
-1
votes
1answer
117 views

How do I make a text field like a “To:” field on facebook's “New Message” window?

I want to know how to make text field like below by using JavaScript and HTML. This text field highlights username with blue box. Do you know any good tutorials?
0
votes
0answers
86 views

Non-Secure App Canvas Form Action Directed to SSL Secured Page

We have built a Facebook app that utilizes the Canvas and Tab pages. The site has a form on it and everything works exactly like it should. We are now being requested to change the form's action from ...
-1
votes
1answer
295 views

Facebook Login/Connect Window “Freezes” After Perrmissions Granted (XD PROXY)

My website is: http://bit.ly/OF9NHS On the optin box towards the lower half of the page, when I click on the Facebook Connect button and then login, it simply "hangs" with a blank window and does ...
1
vote
1answer
110 views

Form not passing through hidden field value correctly in Facebook, but ok elsewhere

I have a script that first checks if the form page is referred from a GET parameter $page['is_referred'] = isset($_GET['rfr']) ? 1 : 0; Then that set value is used as the value of a hidden field in ...
-1
votes
2answers
223 views

Forms and POST using perl

I have this which is supposed to fill the email form on the http://faceoook.com/recover.php and as you know, you can search by email,name or phone number. So I am trying to search by email, and get ...
0
votes
0answers
186 views

facebook login details to autoresponder

I need little help on this topic. I want to use facebook button and send details (name and email) to an autoresponder, infusionsoft. I have this code for facebook <div id="fb-root"> script ...
1
vote
1answer
921 views

jquery ajax call fails and returns error on facebook iframes

I'm trying to add a form to a Facebook page through "Static HTML: iframe tabs" app. I am using jQuery,ajax,php to send the form and recieve success or error. When I run the form outside of Facebook ...
0
votes
2answers
154 views

How to add contact form on facebook personal/people profile page?

I found several apps that allows us to add contact forms in a facebook FAN page. But i couldnt find any that works on personal/people profile pages. So, is there a way to add a form on my profile ...
0
votes
1answer
94 views

Text user wrote in form doesn't appear when variables passed to a feed dialog php file

I am having an odd issue. I am trying to pass the information people filled out in a form to the facebook feed dialog by $_POSTing the name of each field into the field dialog. Facebook has an example ...
0
votes
1answer
80 views

Facebook Secure Forms

I am building some forms using the html input tabs in Facebook. My form actions are post and insert linking to externally hosted php function files. The problem is, if the user isn't using Facebook's ...
0
votes
2answers
639 views

what is wrong with this json array code facebook form

The error i am getting is this : Can't parse fields attribute. Is it a JSON array or CSV list? The problem is in the select menu which is being included in the form. what i want to achieve is a ...
0
votes
1answer
174 views

Facebook checkin form and button on mobile website

Is it possible to put a single field form on a mobile website with a submit button that would 'checkin' the user on Facebook and post what was entered into that field with the checkin?
1
vote
1answer
440 views

Facebook Register Plugin - Form submitting even though validation fails?

I'm using the Facebook Registration Plugin (http://developers.facebook.com/docs/plugins/registration/) to register users for our site. The problem is I can't seem to get custom validation working and ...
0
votes
1answer
234 views

facebook registration - redirect to url including some $response

I'm using the fb:registration Plugin and get some data as signed_request. Its all working fine but if a user already exists in my database i want the user to validate with email and password. ...
1
vote
0answers
239 views

php sdk authorization/form submission - firefox

Starting late this week, I stopped being able to submit forms with some of my apps using the PHP SDK. The problem is that forms won't submit, but (mostly) only on Firefox. Here's the story: My ...
1
vote
1answer
555 views

Change data before submitting the form

I want to be able to encrypt text in a textbox before submiting a form in facebook.I tried ajaxFORM plugin with beforeSerialize or with beforeSubmit but the encryption doesnt happen.In the code that ...
0
votes
1answer
244 views

Problems with Javascript. Not able to Update Status

I am using the Javascript to update the user's status when he enters some text in the Text area. Here's the Javascript for it- <script ...
0
votes
1answer
140 views

FBML Subscribe form

I'm trying to create a simple subscription form to a Newsletter, but when I try to submit I get this message: Unfortunately, your request could not be processed. I'm using "FBML Static" app. Can ...
0
votes
1answer
286 views

Facebook-App: Set a FB-cookie/token

I have a Facebook-App with a form to submit. I only want the users to be able to fill out the form once. What I would like to do is set a cookie + I was wondering if I can set something like a FB ...
0
votes
1answer
520 views

Facebook iFrame form POST submit will cause a new window to open

I've got a PHP Facebook application that's running in an iFrame, and under https. When the user of my app submits a form, the results pop up in a new window. This isn't the desired behavior. When I ...
0
votes
1answer
290 views

Can I run a Contest on a Page Tab or Static html iframe app?

I want to run a contest for business. Am I able to run it on an static html iframe app or a page tab that I created through Facebook Developers or must it be a third party application?
0
votes
1answer
301 views

How do I get Facebook User Basic info into FORM without login

I am using the Facebook Graph API to get basic info of a facebook user to prevent abuse. I want to get the profile pic, user id, link, and fullname. This form is for feedback. Any help would be great. ...
-1
votes
1answer
82 views

Blank page on apps forms [closed]

I discovered last Friday that my apps forms are all broken!!! All the forms now show a blank page after validation! I use the GET method in all my forms. Thanks for your help!
0
votes
1answer
149 views

Proper method for Request 2.0 user-generated request after form submission

Scratching my head on this one: I'm working on an iframe-canvas app. After the user makes their selections in a form and chooses friends with a custom jquery form selector, they submit the form to a ...
0
votes
1answer
466 views

Add functional submit button

I have a feeling this is easy but, I've been working on it for some hours with little success. I'm using iframe version of LightFace modal windows: http://davidwalsh.name/facebook-lightbox I'm ...
0
votes
1answer
204 views

Limit user to enter a competition 5 times every 24 hours?

I have built a Facebook app for a client, this app allows the user to enter their details and guess a figure to be entered into a competition. The app is run via an iframe. Is there any possible way ...

1 2