如何检索在我的网站上发表的 Facebook 评论?
How can I retrive facebook comments commented on my website?
我在我的网站上使用 Facebook 评论,但有什么方法可以获取我网站的评论 post。
您可以通过图表 API 检索您 URL 的 Facebook 评论。只需向以下地址发出 HTTP GET 请求:
在以下示例中,将 <Your token>
替换为您的访问令牌
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", "https://graph.facebook.com/v2.6/?fields=og_object{comments}&id=https://whosebug.com/&access_token=<Your token>", false );
xmlHttp.send( null );
console.log(xmlHttp.responseText);
我在我的网站上使用 Facebook 评论,但有什么方法可以获取我网站的评论 post。
您可以通过图表 API 检索您 URL 的 Facebook 评论。只需向以下地址发出 HTTP GET 请求:
在以下示例中,将 <Your token>
替换为您的访问令牌
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", "https://graph.facebook.com/v2.6/?fields=og_object{comments}&id=https://whosebug.com/&access_token=<Your token>", false );
xmlHttp.send( null );
console.log(xmlHttp.responseText);