1

我正在使用默认的 Twitter 个人资料小部件来显示用户的推文。

https://twitter.com/about/resources/widgets/widget_profile

不幸的是,它没有显示关注者的数量,所以我得到了一个 api,它将所有必要的细节作为 json 发送。下面是相同的 URL。

https://api.twitter.com/1/users/show.json?screen_name=TwitterAPI&include_entities=true

我想使用“followers_count”并将其显示在配置文件小部件上。

如果有人向我指出一个使用 c# 在 asp.net 中使用此类 JSON 结果的示例,我将不胜感激。

4

1 回答 1

1

我更喜欢Json.Net来解析 json

WebClient cln = new WebClient();
string json = cln.DownloadString("https://api.twitter.com/1/users/show.json?screen_name=TwitterAPI&include_entities=true");
dynamic obj = JsonConvert.DeserializeObject(json);
Console.WriteLine("{0} {1} {2}",obj.location,obj.screen_name,obj.followers_count);
于 2012-05-15T07:53:56.997 回答