I have small problem with http 404 error, after click on 'allow' on facebook permissions page.
When I type http://localhost:port address in browser, I get same error:
cannot find /facebookredirect.axd/[app name]/default.aspx
After granting permissions (and after 404 error), when I want to use my app, I'm running it from my profile. Everything is fine and app works well.
I had a similar problem some time ago, I changed my web.config file, see the following:
I added this to the httpHandlers
section in system.web
:
<add verb="*" path="facebookredirect.axd" type="Facebook.Web.FacebookAppRedirectHttpHandler, Facebook.Web"/>
And added this to the handlers
section in system.webServer
:
<add name="facebookredirect" verb="*" path="facebookredirect.axd" type="Facebook.Web.FacebookAppRedirectHttpHandler, Facebook.Web"/>
And lastly I set the Url's in the codebehind (this should post back to the original app url and you'll see the variables added depends on what the user clicks):
CanvasAuthorizer cAuthorizer = new CanvasAuthorizer();
cAuthorizer.ReturnUrlPath = HttpUtility.UrlEncode("?allow=true");
cAuthorizer.CancelUrlPath = HttpUtility.UrlEncode("?allow=false");
Make sure you are setting your facebook settings in the config file, e.g:
<facebookSettings appId="0000000" appSecret="0000000000" canvasPage="http://apps.facebook.com/xxxxx/" canvasUrl="http://xxxxxxx" secureCanvasUrl="https://xxxxxxx"/>
I'm not 100% sure if I used the same SDK version, but give it a try.
You need to setup your web.config file correctly. See the getting started documentation for instructions on how to do that: http://facebooksdk.codeplex.com/wikipage?title=Getting%20Started&referringTitle=Documentation