我正在使用维基百科api查询数据,并希望将结果转换为字符串[]。
查询“test”
en.wikipedia.org/w/api.php?action=opensearch&search=test&format=json&callback=spellcheck
在此处返回此结果:
spellcheck(["test",["Test cricket","Test","Testicle","Testudines","Testosterone","Test pilot","Test (assessment)","Testimonial match","Testimony","Testament (band)"]])
我可以使用Json.net删除或忽略“spellcheck”标签吗? 如果我使用此代码转换响应,应用程序崩溃:
Dictionary<string, string[]> dict = JsonConvert.DeserializeObject<Dictionary<string, string[]>>(response);
答案 0 :(得分:4)
Wikipedia的api(使用JSON)假设您正在使用JSONP。您可以从查询字符串中完全删除回调参数:
en.wikipedia.org/w/api.php?action=opensearch&search=test&format=json
此外,您获得的结果可能无法转换为Dictionary<string, string[]>
。如果仔细观察,它实际上是一个数组,其中第一个对象是字符串(搜索项),第二个是字符串列表(结果)。
以下对我有用:
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(
@"http://en.wikipedia.org/w/api.php?action=opensearch&search=test&format=json");
string[] searchResults = null;
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
{
JArray objects = JsonConvert.DeserializeObject<JArray>(reader.ReadToEnd());
searchResults = objects[1].Select(j => j.Value<string>()).ToArray();
}
}