The error:System.Net.WebException: The operation has timed out
at Facebook.FacebookClient.MakeRequest(HttpMethod httpMethod, Uri requestUrl, Byte[] postData, String contentType)
at Facebook.FacebookClient.Api(String path, IDictionary2 parameters, HttpMethod httpMethod, Type resultType)
at Facebook.Web.FacebookWebClient.Api(String path, IDictionary2 parameters, HttpMethod httpMethod, Type resultType)
at Facebook.FacebookClient.Get(String path)
at Markurt_V1.Default.ShowFacebookContent() in T:\vcsgd\Markurt\WebApp\Markurt_V1\Default.aspx.cs:line 49
WebConfig:
<configuration>
<configSections>
<section name="facebookSettings" type="Facebook.FacebookConfigurationSection" />
</configSections>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<customErrors mode="Off" defaultRedirect="http://www.crimsonleafgames.com/Error.aspx">
<error statusCode="403" redirect="http://www.crimsonleafgames.com/NoAccess.aspx"/>
<error statusCode="404" redirect="http://www.crimsonleafgames.com/NotFound.aspx"/>
</customErrors>
<httpHandlers>
<add verb="*" path="facebookredirect.axd" type="Facebook.Web.FacebookAppRedirectHttpHandler, Facebook.Web" />
</httpHandlers>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true" />
<handlers>
<add name="facebookredirect.axd" verb="*" path="facebookredirect.axd" type="Facebook.Web.FacebookAppRedirectHttpHandler, Facebook.Web" />
</handlers>
</system.webServer>
<facebookSettings appId="mineminemine" appSecret="YourMamaWearsArmyBoots" canvasPage="http://apps.facebook.com/Markurt/" canvasUrl="http://markurt01.crimsonleafgames.com/" cancelUrlPath="" />
</configuration>
The Code:
protected void Page_Load(object sender, EventArgs e)
{
try
{
var auth = new CanvasAuthorizer();
// var auth = new CanvasAuthorizer { Permissions = new[] { "user_about_me", "email" } };
if (auth.Authorize())
{
ShowFacebookContent();
}
}
catch (Exception kaboom)
{
m_oFaceBookInfo.Text = "Error" + kaboom.ToString();
}
}
private void ShowFacebookContent()
{
FacebookWebContext fwc = new FacebookWebContext();
long l = fwc.UserId;
StringBuilder sb = new StringBuilder();
sb.Append("User Id = " + fwc.UserId + "\n");
try
{
var fb = new FacebookWebClient();
dynamic myInfo = fb.Get("/me");
sb.Append("Name: " + myInfo.name + "\n");
sb.Append("UserName: " + myInfo.username + "\n");
sb.Append("UserId: " + myInfo.id + "\n");
sb.Append("Locale: " + myInfo.locale + "\n");
//sb.Append("Email: " + myInfo.email + "\n");
}
catch (Exception kaboom)
{
sb.Append(kaboom.ToString());
}
m_oFaceBookInfo.Text = sb.ToString();
}