c# - Trying to receive JSON with JSON.net -
i've started building app tide info, weather info, mapping capabilities, etc world weather online, can't json response.
i've installed json.net via nuget, running windows 8.1. i've been able view data pasting json url actual browser. using output @ json2sharp create bottom part of code below.
tried http://www.codeproject.com/tips/397574/use-csharp-to-get-json-data-from-the-web-and-map-i , how json string url?.
using system; using system.net; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.threading.tasks; using system.windows.forms; using gmap.net.windowsforms; using gmap.net; using gmap.net.mapproviders; using system.xml.linq; using system.xml; using system.io; using system.web; using newtonsoft.json.linq; using newtonsoft.json; using restsharp; using newtonsoft.json.utilities; namespace eod_assistant { public partial class form1 : form { public form1() { initializecomponent(); } private void mymap_load(object sender, eventargs e) { mymap.mapprovider = binghybridmapprovider.instance; mymap.setpositionbykeywords("comox, canada"); mymap.minzoom = 1; mymap.maxzoom = 17; mymap.zoom = 10; mymap.candragmap = true; mymap.mapscaleinfoenabled = true; } private void form1_load(object sender, eventargs e) { string url = "http://api.worldweatheronline.com/free/v2/weather.ashx?q=campbell%20river&format=json&num_of_days=5&callback=rrr&key=1ccf49ff57a386e570286ae9294b9"; } private void getweather() { } private void weatherbtn_click(object sender, eventargs e) { } public class weatherdesc { public string value { get; set; } } public class weathericonurl { public string value { get; set; } } public class currentcondition { public string cloudcover { get; set; } public string feelslikec { get; set; } public string feelslikef { get; set; } public string humidity { get; set; } public string observation_time { get; set; } public string precipmm { get; set; } public string pressure { get; set; } public string temp_c { get; set; } public string temp_f { get; set; } public string visibility { get; set; } public string weathercode { get; set; } public list<weatherdesc> weatherdesc { get; set; } public list<weathericonurl> weathericonurl { get; set; } public string winddir16point { get; set; } public string winddirdegree { get; set; } public string windspeedkmph { get; set; } public string windspeedmiles { get; set; } } public class request { public string query { get; set; } public string type { get; set; } } public class astronomy { public string moonrise { get; set; } public string moonset { get; set; } public string sunrise { get; set; } public string sunset { get; set; } } public class weatherdesc2 { public string value { get; set; } } public class weathericonurl2 { public string value { get; set; } } public class hourly { public string chanceoffog { get; set; } public string chanceoffrost { get; set; } public string chanceofhightemp { get; set; } public string chanceofovercast { get; set; } public string chanceofrain { get; set; } public string chanceofremdry { get; set; } public string chanceofsnow { get; set; } public string chanceofsunshine { get; set; } public string chanceofthunder { get; set; } public string chanceofwindy { get; set; } public string cloudcover { get; set; } public string dewpointc { get; set; } public string dewpointf { get; set; } public string feelslikec { get; set; } public string feelslikef { get; set; } public string heatindexc { get; set; } public string heatindexf { get; set; } public string humidity { get; set; } public string precipmm { get; set; } public string pressure { get; set; } public string tempc { get; set; } public string tempf { get; set; } public string time { get; set; } public string visibility { get; set; } public string weathercode { get; set; } public list<weatherdesc2> weatherdesc { get; set; } public list<weathericonurl2> weathericonurl { get; set; } public string windchillc { get; set; } public string windchillf { get; set; } public string winddir16point { get; set; } public string winddirdegree { get; set; } public string windgustkmph { get; set; } public string windgustmiles { get; set; } public string windspeedkmph { get; set; } public string windspeedmiles { get; set; } } public class weather { public list<astronomy> astronomy { get; set; } public string date { get; set; } public list<hourly> hourly { get; set; } public string maxtempc { get; set; } public string maxtempf { get; set; } public string mintempc { get; set; } public string mintempf { get; set; } public string uvindex { get; set; } } public class data { public list<currentcondition> current_condition { get; set; } public list<request> request { get; set; } public list<weather> weather { get; set; } } public class rootobject { public data data { get; set; } } public class pleasework { private static t _download_serialized_json_data<t>(string url) t : new() { using (var w = new webclient()) { var json_data = string.empty; // attempt download json data string try { json_data = w.downloadstring(url); } catch (exception) { } // if string json data not empty, deserialize class , return instance return !string.isnullorempty(json_data) ? jsonconvert.deserializeobject<t>(json_data) : new t(); } } } } }
protocol missing in url
string url = "http://api.worldweatheronline.com/free/v2/weather.ashx?q=campbell%20river&format=json&num_of_days=5&callback=rrr&key=xxxxxxxxxxxxxxxxxxxxxxx"; using (var webclient = new system.net.webclient()) { var json = webclient.downloadstring(url); //this gives me exception error....dunno why. }
and json string returnd api not correct, starts "rrr" (at time of writing of course)
Comments
Post a Comment