WebRequest to connect to the Wikipedia API

前端 未结 3 1685
北海茫月
北海茫月 2021-02-14 13:54

This may be a pathetically simple problem, but I cannot seem to format the post webrequest/response to get data from the Wikipedia API. I have posted my code below if anyone can

3条回答
  •  你的背包
    2021-02-14 14:31

    You might want to try a GET request first because it's a little simpler (you will only need to POST for wikipedia login). For example, try to simulate this request:

    http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Main%20Page

    Here's the code:

    HttpWebRequest myRequest =
      (HttpWebRequest)WebRequest.Create("http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Main%20Page");
    using (HttpWebResponse response = (HttpWebResponse)myRequest.GetResponse())
    {
        string ResponseText;
        using (StreamReader reader = new StreamReader(response.GetResponseStream()))
        {
            ResponseText = reader.ReadToEnd();
        }
    }
    

    Edit: The other problem he was experiencing on the POST request was, The exception is : The remote server returned an error: (417) Expectation failed. It can be solved by setting:

    System.Net.ServicePointManager.Expect100Continue = false;
    

    (This is from: HTTP POST Returns Error: 417 "Expectation Failed.")

提交回复
热议问题