vote up 2 vote down star
1

Hey,

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 help me see my problem.

string pgTitle = txtPageTitle.Text;

    Uri address = new Uri("http://en.wikipedia.org/w/api.php");

   HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;

    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";


    string action = "query";
    string query = pgTitle;

    StringBuilder data = new StringBuilder();
    data.Append("action=" + HttpUtility.UrlEncode(action));
    data.Append("&query=" + HttpUtility.UrlEncode(query));

    byte[] byteData = UTF8Encoding.UTF8.GetBytes(data.ToString());


    request.ContentLength = byteData.Length;

    using (Stream postStream = request.GetRequestStream())
    {
        postStream.Write(byteData, 0, byteData.Length);
    }

      using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
    {
        // Get the response stream   
        StreamReader reader = new StreamReader(response.GetResponseStream());


        divWikiData.InnerText = reader.ReadToEnd();
    }
flag
1  
At first glance you're code looks good. How does the problem specifically present itself? What's the exception? – Tommi Forsström Apr 21 at 15:06
The exception is : The remote server returned an error: (417) Expectation failed. – NickJ Apr 21 at 15:28
@NickJ: Try my code below. It worked. – Keltex Apr 21 at 15:32
You need to add System.Net.ServicePointManager.Expect100Continue = false; See stackoverflow.com/questions/566437/… – Keltex Apr 21 at 15:41
1  
I would like to give you both some rep points for being so helpful. But I don't have enough yet. Anyway thanks guys. I will be visiting the Stack again. Keltex- maybe you could just edit your post with the answer so that other people can see the answer. cheers Nick – NickJ Apr 21 at 16:01

2 Answers

vote up 4 vote down check

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://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c-resolved)

link|flag
Thanks Keltex, I can get the Get working easily enough. using: WebRequest req = WebRequest.Create(address +"?" + data) as WebRequest; using (WebResponse resp = req.GetResponse() as WebResponse) { StreamReader readme = new StreamReader(resp.GetResponseStream()); divWikiData.InnerText = readme.ReadToEnd(); } This Post request still defats me - and I need Post for some of the actions the api allows.. – NickJ Apr 21 at 15:26
Nick, can you please let us know what kind of problem your POST request is displaying. What's the exception you get? How is it behaving? – Tommi Forsström Apr 21 at 15:28
The exception is : The exception is : The remote server returned an error: (417) Expectation failed. – NickJ Apr 21 at 15:32
Keltex thanks again , for the Get request code. I really need some idea of how to use the Get request, as eventually I would like to try login and edit pages. – NickJ Apr 21 at 15:36
You need to add System.Net.ServicePointManager.Expect100Continue = false; See stackoverflow.com/questions/566437/… – Keltex Apr 21 at 15:40
show 1 more comment
vote up 0 vote down

You seem to be pushing the input data on HTTP POST, but it seems you should use HTTP GET.

From the MediaWiki API docs:

The API takes its input through parameters in the query string. Every module (and every action=query submodule) has its own set of parameters, which is listed in the documentation and in action=help, and can be retrieved through action=paraminfo. http://www.mediawiki.org/wiki/API:Data_formats

link|flag

Your Answer

Get an OpenID
or

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