I'm tryng to use Facebook authentication at http://landlordscores.co.uk/account/login.aspx but after logging in with facebook, the callback page displays "Invalid signed request. (Invalid signature.) ". The app ID and secret are correct and no other information seems to be logged. This happens every time I try to log in with facebook.

Edit: To make the call, I'm using pretty much the exact code as the sample. In the markup:

<iframe src="<%= this.RegistrationUrl %>"
                        scrolling="auto"
                        frameborder="no"
                        style="border:none"
                        allowTransparency="true"
                        width="100%"
                        height="500">
                  </iframe>

In the code-behind:

public string RegistrationUrl {
    get
        {
    var url = string.Format(
    "http://www.facebook.com/plugins/registration.php?client_id={0}&redirect_uri={1}&fields={2}",
    FacebookApplication.Current.AppId,
    HttpUtility.UrlEncode(AppBLL.GetAbsoluteURL("~/Account/fbregcallback.aspx")),
    HttpUtility.UrlEncode("[{\"name\":\"name\"},{\"name\":\"email\"},{\"name\":\"location\"},{\"name\":\"password\",\"view\":\"not_prefilled\"},{\"name\":\"captcha\"}]"));            this.RegisterUser.ContinueDestinationPageUrl = this.Request.QueryString["ReturnUrl"];
    this.hdnPassLength.Value = Membership.MinRequiredPasswordLength.ToString();
                            HttpUtility.UrlEncode("[{\"name\":\"name\"},{\"name\":\"email\"},{\"name\":\"location\"},{\"name\":\"password\",\"view\":\"not_prefilled\"},{\"name\":\"captcha\"}]"));       
    this.hdnPassLength.Value = Membership.MinRequiredPasswordLength.ToString();
    }
}
link|improve this question

73% accept rate
Can you post the code you use to make the call? – OffBySome Jun 11 '11 at 15:31
Thanks, I've added a code sample – Echilon Jun 13 '11 at 17:18
When you say you are using sample code...where are you getting your sample? You do not appear to be using the Facebook C# SDK (your question has this SDK tagged), and your code does not use the Javascript SDK / Registration plugin recommended by Facebook at developers.facebook.com/docs/guides/web/#login – Pat James Jun 26 '11 at 13:45
@Echilon Have you looked at Request.Params["signed_request"] to see if it's returning anything at all? also what version of the C# SDK are you using? – xanderer Jun 27 '11 at 15:53
1  
Have you tried using the sample code on this page: developers.facebook.com/docs/plugins/registration ? If you click Register on the example on that page, you'll get an echo response that may help debug your issue. – nafisto Jun 28 '11 at 18:33
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted
+25

Perhaps you have done this already but I have had the same issue and all I had to do was add my app ID and secret to the web.config.

In the web.config file, my issue was on this line. Ensuring these are populated and accurate should solve the issue.

<facebookSettings appId="xxxxxxxx"  appSecret="xxxxxxx"  cookieSupport="true" />

Hope this helps!

link|improve this answer
feedback

I think you will find this has something to do with cookies.

I was playing around with the different sample web sites that have in the sdk. I cleared my cookies and then I stopped getting that error.

link|improve this answer
feedback

You must check your app settings on facebook. Take care about the URLs and other settings.

link|improve this answer
1  
Pretty lame answer to cash in on the bounty. Checking the settings were correct was the first thing I tried before posting. – Echilon Jun 28 '11 at 18:18
feedback

Your Answer

 
or
required, but never shown

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