c# WebRequest to connect to wikipedia API - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:46:29Zhttp://stackoverflow.com/feeds/question/773029http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api2c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:02:22Z2009-04-21T19:05:05Z
<p>Hey, </p>
<p>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. </p>
<pre><code>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();
}
</code></pre>
http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773081#7730810Answer by Tommi Forsström for c# WebRequest to connect to wikipedia APITommi Forsström2009-04-21T15:10:20Z2009-04-21T15:10:20Z<p>You seem to be pushing the input data on HTTP POST, but it seems you should use HTTP GET.</p>
<p>From the MediaWiki API docs:</p>
<blockquote>
<p>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.
<a href="http://www.mediawiki.org/wiki/API:Data%5Fformats" rel="nofollow">http://www.mediawiki.org/wiki/API:Data_formats</a></p>
</blockquote>
http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#7730844Answer by Keltex for c# WebRequest to connect to wikipedia APIKeltex2009-04-21T15:11:07Z2009-04-21T19:05:05Z<p>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:</p>
<blockquote>
<p><a href="http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Main%20Page" rel="nofollow">http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Main%20Page</a></p>
</blockquote>
<p>Here's the code:</p>
<pre><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();
}
}
</code></pre>
<p><strong>Edit:</strong> The other problem he was experiencing on the POST request was, <code>The exception is : The remote server returned an error: (417) Expectation failed.</code> It can be solved by setting:</p>
<pre><code>System.Net.ServicePointManager.Expect100Continue = false;
</code></pre>
<p>(This is from: <a href="http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c-resolved">http://stackoverflow.com/questions/566437/http-post-returns-the-error-417-expectation-failed-c-resolved</a>)</p>