如何使用推特 api,它使用 c#(Web 窗体)在 ASP.Net 中以 json 形式返回结果
本文关键字:Net ASP 中以 json 结果 返回 窗体 Web api 何使用 | 更新日期: 2023-09-27 18:34:15
我正在使用默认的推特个人资料小部件来显示用户的推文。
https://twitter.com/about/resources/widgets/widget_profile
不幸的是,它没有显示关注者的数量,所以我掌握了一个 api,它将所有必要的详细信息作为 json 发送。 下面是相同的网址。
https://api.twitter.com/1/users/show.json?screen_name=TwitterAPI&include_entities=true
我想使用"followers_count"并将其显示在配置文件小部件上。
如果有人指出我一个使用 c# 使用此类 JSON 结果 asp.net 的示例,我将不胜感激。
我更喜欢 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);