vote up 2 vote down star
1

Hi all,

I'm making a facebook iframe application

I'm making a request form with my own form data. What should I do in order to process the data?

If I put action="http://apps.facebook.com/[appName]/abc.php" , i.e.

<fb:serverfbml>
	<script type="text/fbml">
		<fb:fbml>
			<fb:request-form action="http://apps.facebook.com/[appName]/abc.php" method="post" type="abc" content="abc">
				<textarea name="pm" fb_protected="true" ></textarea>
				<fb:multi-friend-selector showborder="false" max="35" actiontext="test" email_invite="true" bypass="cancel" />
			</fb:request-form> 
		</fb:fbml>
	</script>
</fb:serverfbml>

Then the result is funny... A facebook page inside the facebook app's iframe !

but if I put action="http://[my own domain / facebook connect url]/abc.php" , i.e.

<fb:serverfbml>
	<script type="text/fbml">
		<fb:fbml>
			<fb:request-form action="http://[my own domain / facebook connect url]/abc.php" method="post" type="abc" content="abc">
				<textarea name="pm" fb_protected="true" ></textarea>
				<fb:multi-friend-selector showborder="false" max="35" actiontext="test" email_invite="true" bypass="cancel" />
			</fb:request-form> 
		</fb:fbml>
	</script>
</fb:serverfbml>

Then the result page will be rendered WITHOUT facebook template (that means losing all top facebook banner and bottom facebook bar like the facebook chats etc)

Anyone knows what's wrong?

Thanks a lot for reading

flag

80% accept rate

2 Answers

vote up 1 vote down

The way I handled this was to have my form processor page emit no output except an "< fb:redirect >" that pointed back to the main app.

link|flag
thx! I also found that using [facebook connect url] will make it unable to receive the form params... do you have any experience of this? – Unreality Jun 11 at 1:14
Sorry, I haven't worked with facebook connect. – Mike Heinz Jun 11 at 14:45
vote up 0 vote down

How did you use this < fb:redirect > ?

ok I found it try adding target="_top"

http://apps.facebook.com/myapp' label='Join Now' />" action="http://apps.facebook.com/myapp" target="_top" invite="true">

link|flag

Your Answer

Get an OpenID
or

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