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.

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/

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.