使用JSON.Net(http://www.newtonsoft.com/json/help/html/LINQtoJSON.htm)和以下C#代码:
@using Newtonsoft.Json;
@using Newtonsoft.Json.Linq;
@{
var url = "https://graph.facebook.com/v2.2/me&fields=id%2Cname%2Cposts.limit(3)&format=json&method=get&pretty=0&suppress_http_code=1";
var syncClient = new WebClient();
var content = syncClient.DownloadString(url);
JObject facebook = JObject.Parse(content);
//To-Do: Loop each JSON object to get message, image, & link values.
}
如何循环每个JSON对象以获取消息,图像和&链接值给出以下JSON格式(http://www.codeshare.io/EvIdN)。
答案 0 :(得分:1)
您可以使用indexer:
foreach (var element in facebook["posts"]["data"])
{
message = element["message"];
image = element["image"];
//etc
}
Here is an example,以及您的JSON无效的方式......