0

我有一个想要访问的 Facebook 页面提要:

http://facebook.com/feeds/page.php?format=json&id=123456789 (Not a real ID)

当我将 URL 放入浏览器时,它工作得很好,但是当我尝试使用 file_get_contents 访问它时,Facebook 将我发送到一个页面,显示我正在使用不受支持的浏览器。虽然这些数据是公开的,所以我不需要访问令牌来获取它。为了访问这些数据,我需要采取额外的步骤吗?我也尝试使用 cURL 但没有成功。

任何帮助表示赞赏。谢谢。

4

2 回答 2

3

您可以使用 curl 并模仿浏览器,请参阅此线程以了解如何操作。

$header = array();
$header[] = 'Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5';
$header[] = 'Cache-Control: max-age=0';
$header[] = 'Connection: keep-alive';
$header[] = 'Keep-Alive: 300';
$header[] = 'Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7';
$header[] = 'Accept-Language: en-us,en;q=0.5';
$header[] = 'Pragma: ';
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, 'YOUR URL HERE');
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)');
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_setopt($ch, CURLOPT_AUTOREFERER, true); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_ENCODING, '');
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
$result = curl_exec($ch);
curl_close ($ch);
echo $result;
于 2012-05-14T16:57:16.543 回答
1

不要使用这个 url,访问它的方法真的很老。使用他们相对较新的Graph API

于 2012-05-14T16:57:12.843 回答