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 am trying to get events from facebook using access token. But i m getting error while retrieving data

Error : The remote server returned an error: (405) Method Not Allowed.

My Code below

protected void Page_Load(object sender, EventArgs e) { AssignProxy(false);

    var accessToken = "AAACEdEose0cBAFZAzjguSbOkaYU200lzH2DLPhL7NWmvWZCz6kJZBSKJmOfHoNTBsvZAfhiBNGe9FUX2dZAGESsiZBxnM8ZARPGQRBDVNdd6ZAxOKGPkpraP";
    var client = new FacebookClient(accessToken);
    //dynamic me = client.Get("me");
    //string aboutMe = me.about;

    //Response.Write(me.ToString());

    dynamic events = client.Get("search?q=williamsburg,new york&type=event");

    Response.Write(events);

    //dynamic eventDetails = client.Get("434796626578458");

    //Response.Write(eventDetails);

    dynamic eventDetails = client.Get("123966167614127");

    Response.Write(eventDetails);
}

private static void AssignProxy(bool IsCredentialsRequired)
{
    try
    {
        IWebProxy proxy = WebRequest.GetSystemWebProxy();

        //first customize the default proxy
        WebProxy wproxy = new WebProxy(proxy.GetProxy(new Uri("http://www.google.com")).ToString(), true);
        if (!IsCredentialsRequired)
            wproxy.Credentials = CredentialCache.DefaultNetworkCredentials;


        WebRequest.DefaultWebProxy = wproxy;

    }
    //catch (System.ServiceModel.EndpointNotFoundException endPointEx)
    //{
    //    throw endPointEx;
    //}
    catch (Exception ex)
    {
        throw ex;
    }
}

}

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.