Facebook Fan Page Support Product Page
Answered
Error : This content is for Facebook only
Asked 19 Oct 2012 10:15:15
2
have this question
19 Oct 2012 10:15:15 Andrew Wiggins posted:
URL: www.facebook.com/pages/Bellefontaine/485458601485872?sk=app_116345775187748I have a facebook page which shows a simple contact form which posts correctly to an ASP script which in turns redirects back to the form. However I get "This content is for Facebook only!" error which points to Request("signed_request"

Should I Server.Transfer instead?
Replies
Replied 19 Oct 2012 10:54:24
19 Oct 2012 10:54:24 Andrew Wiggins replied:
To overcome this error I placed a hidden input as <input type="hidden" name="signed_request" value="<%= Trim(Request("signed_request"
) %>" />
The form submits to script which then Server.Transfer back to form whilst setting a session value so form displays success message :
Session("SUCCESS"
= "Sent"
Server.Transfer("facebook-form.asp"

The form submits to script which then Server.Transfer back to form whilst setting a session value so form displays success message :
Session("SUCCESS"

Server.Transfer("facebook-form.asp"

Replied 13 Dec 2012 18:56:09
13 Dec 2012 18:56:09 Alex Crousset replied:
How can i solve this in PHP?