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.

I have tried absolutely everything...here is my scenario.

I have five apps running on IIS server, each in it's own folder with the proper web.config, containing FacebookSettings with AppID, Secret, etc.

Each app uses the same Authorize logic

 var auth = new CanvasAuthorizer { Permissions = new[] { "user_about_me", "email" } };

            if (auth.Authorize())
            {

                if (mode == "run")
                {
                    ShowWelcomeContent();
                }
                else if (mode == "runadmin")
                {
                    ShowEditContent();
                }

            }

It all works great when I hit the first app from Facebook.

Once I tried hitting the second app, it ALWAYS throws the same "Invalid signed request" error. If I change something and retry and access them in a separate order, the first app (whichever it is) always works, second to fifth always fail.

share|improve this question

2 Answers

That is cause it internally verifies the signed_request using the AppSecret for extra security. So make sure you app seceret is set correctly for both the applications.

You might want to refer to this post on how to use it for multiple applications. http://facebook.stackoverflow.com/questions/4931240/multiple-facebook-apps-under-one-web-application/4936703#4936703

share|improve this answer

1) Make sure your config values are correct for both apps.(web.config)... I know you said both apps works it's only works first time just make sure you have different values in config.

2) Try clearing your browser cookies.

If you haven't seen this already:

Facebook API - Invalid signed request. (Invalid signature.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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