我想在我的网站中显示来自: https ://graph.facebook.com/comments/?ids=http://lujanventas.com/test.php 的内容。
除了 AJAX 调用,我还能怎么做?没有JS可以吗?
我想在我的网站中显示来自: https ://graph.facebook.com/comments/?ids=http://lujanventas.com/test.php 的内容。
除了 AJAX 调用,我还能怎么做?没有JS可以吗?
您可以创建一个服务器端脚本来读取文件的内容并回显它
这是 php 中此类脚本的示例:
$ids = "http://lujanventas.com/test.php";
$url = "https://graph.facebook.com/comments/?ids=".urlencode($ids);
$data = json_decode(file_get_contents($url),true);
foreach($data[$ids]["comments"]["data"] as $comment){
echo $comment["message"]."<br /><br />";
}