0

我正在使用 cURL 访问 Facebook 页面。在本地它工作得很好,但是当我将它上传到我的开发服务器时,它会中断并返回一个空字符串。我已经检查并在服务器上安装了 cURL。这是我用来访问 facebook 的代码:

$header = array();
$header[] = 'Accept: text/json';
$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, 'http://facebook.com/feeds/page.php?format=json&id=135137236003');
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);

任何帮助表示赞赏!

4

1 回答 1

0

将接受标头更改为*/*application/jsonfacebook 将响应标头发送为application/json.

并更改此网址

http://facebook.com/feeds/page.php?format=json&id=135137236003

http://www.facebook.com/feeds/page.php?format=json&id=135137236003

由于 facebook 将非 www 请求重定向到 www 请求。虽然它适用于您作为放置跟随位置,但它可以节省一次往返行程

于 2012-05-25T14:18:39.853 回答