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.

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 a relative link to an absolute link pointed to the secure version of the form. Example:

Page hosted on http://app.example.com/form

<form method="post" action="/form">... </form>

to be changed to:

<form method="post" action="https://app.example.com/form">... </form>

This is done, but then when the form is submitted, we get an error from Facebook that the web page has a redirect loop. Is there any way around this? The form must be encrypted, and changing the regular tab page to https:// does not work. Thank you, any help is appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.