简体   繁体   中英

web request using API

I have done something similar to this before however I'm not sure how to do this with a bigger project. I'm trying to return the titles of all the stuff on the front page of reddit.

From this site:

http://www.reddit.com/r/all.json

I pasted the data into

http://json2csharp.com/#

to find out the class I need.

From here though, I'm not too sure on how to proceed. If I wanted to return an array of all this data so I can easily get information, how could I do it. Sorry for the vagueness of this question but I'm just at a loss and don't know what to do.

Use

using (var webClient = new System.Net.WebClient()) {
    var json = webClient.DownloadString("http://www.reddit.com/r/all.json");
}

For old . Net :

var request = WebRequest.Create(url);
string text;
 request.ContentType = "application/json; charset=utf-8";

var response = (HttpWebResponse) request.GetResponse();

using (var sr = new StreamReader(response.GetResponseStream()))
{
    text = sr.ReadToEnd();
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM