Please check below code and let me know where there is error in it.
--form.htm ----
<iframe allowtransparency="true" frameborder="no" height="600" scrolling="auto"
src="http://www.facebook.com/plugins/registration.php?client_id=xxxxxxx&
redirect_uri=https://mysite.com/fb/reg.aspx&
fields=name,email,birthday,gender"
scrolling="auto"
frameborder="no"
style="border: none;"
width="500" height="600">
</iframe>
----- reg.aspx.cs
public partial class parser : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (Request.Form["signed_request"] != null)
{
//parse data
string[] requestArray = Request.Form["signed_request"].ToString().Split('.');
string dataString = base64Decode(requestArray[1]);
}
else
{
Response.Write("No data recieved");
}
}
}
It always executes the else part on live server, but on local it parses the data. Why is it so? Do i need to change something in the fb application?
Note: Sandbox mode is disabled, domain name is set to allcontact.com and canvas url is https://allcontact.com/fb/