我需要获得一些字段值,如邮件上的相似数量,共享帖子,评论帖子数量,Facebook帐户中针对用户在C#中的帖子数量。
只是为了更新更新,我使用下面的代码来获取上述值,但在这种情况下,如果我通过Facebook帐户详细信息,那么它将所有值返回为0
string urltxt = "http://www.groupon.com/deals/seattlehelitourscom-by-classic-helicopter-corp";
System.Net.WebClient web = new System.Net.WebClient();
string url = string.Format("https://api.facebook.com/method/fql.query?query=SELECT url, share_count, like_count, comment_count, total_count, click_count FROM link_stat where url='" + urltxt + "'");
string response = web.DownloadString(url);
DataSet ds = new DataSet();
StringReader stringReader = new StringReader(response);
ds.ReadXml(stringReader);
答案 0 :(得分:1)
回到文档。您正在建立一个仅需要1年,2个月,3天的平台方法。
2016年8月7日,v2.0将被弃用,并且所有FQL都将被弃用。如果您在此之后需要此功能,可能需要查看GraphAPI。 Source