如何使用file_get_contents获取Facebook页面?

时间:2015-04-24 16:19:51

标签: php facebook facebook-graph-api

有没有办法使用PHP的file_get_contents()函数来检索Facebook的页面内容?

例如:我想阅读此链接“https://www.facebook.com/search/str/teespring.com/stories-keyword/intersect/stories-publishers

的内容

这是我的代码:

<?php

$content = file_get_contents("https://www.facebook.com/search/str/teespring.com/stories-keyword/intersect/stories-publishers");

echo $content;

但是此功能的结果是需要身份验证的页面。它显示了Facebook的登录页面。

我的问题是如何通过PHP脚本阅读任何Facebook页面的内容?当然,它可能需要在脚本中使用Facebook帐户或Facebook应用程序。

0 个答案:

没有答案