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.

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();
    }
share|improve this question
most likely you're not connected to the net or your firewall is blocking it. try graph.facebook.com/4 in the browser and check if that one works first. – prabir Apr 26 '11 at 8:14

closed as too localized by Robert Harvey Apr 28 '11 at 5:36

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

The issue seems to have cleared up, it must have been a facebook error.

share|improve this answer

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