Need help on the below error message I got when I'm trying to authenticate using latest Facebook C# SDK.
Error Message I got is:-
The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /WebSite17/facebookredirect.axd
Here's what I have in my default.aspx.cs file
protected void Page_Load(object sender, EventArgs e) { try { var settings = ConfigurationManager.GetSection("facebookSettings"); var current = settings as IFacebookApplication;
var auth = new CanvasAuthorizer { Permissions = new[] { "user_about_me" } };
if (auth.Authorize())
{
var client = new FacebookClient();
dynamic me = client.Get("me");
string firstName = me.first_name;
string lastName = me.last_name;
string email = me.email;
Response.Write("First Name: " + firstName + "<br>Last Name: " + lastName + "<br>Email: " + email + "<br>");
}
else
{
Response.Write("You didn't login to Facebook.");
}
}
catch (Exception ex)
{
Response.Write("Exception Message: " + ex.Message);
}
}
I have already setup the web.config file as per the Sample CSASPNETFacebookApp
What else I have done wrong? I've included the references of .NET 4.0 of Facebook.dll and Facebook.web.dll and the namespaces.
Please advice. Thanks