1

我试图在重定向后检索图像的位置 URL,但我似乎无法让它工作。我以前从未使用过 cURL,但从我所做的研究看来,我需要它来从 Facebook 获取图像。到目前为止,这是我的代码:

function getImage($url) {
$ch = curl_init();
// Only calling the head
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, true); // header will be at output
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'HEAD'); // HTTP request is 'HEAD'

$content = curl_exec($ch);
curl_close($ch);

return $content;
}

$image = explode("Location: ", getImage("http://graph.facebook.com/553451657/picture?type=large"));

print_r($image);

但我的回应是:

HTTP/1.1 302 Found Access-Control-Allow-Origin: * Cache-Control: private, no-cache, no-store, must-revalidate Content-Type: image/jpeg Expires: Sat, 01 Jan 2000 00:00:00 GMT Location: http://profile.ak.fbcdn.net/hprofile-ak-snc4/161877_553451657_798840908_n.jpg Pragma: no-cache X-FB-Rev: 590433 X-FB-Debug: WH1uJvIjUqiLT8ezVPdude8VKYnXjAHRlFaP8gqF9fI= Date: Fri, 13 Jul 2012 17:56:09 GMT Connection: keep-alive Content-Length: 0 Array ( [0] => 1 ) 

我如何才能获得位置部分(“http://profile.ak.fbcdn.net/hprofile-ak-snc4/161877_553451657_798840908_n.jpg”)?

4

2 回答 2

1

您可以在标题上执行功能:

            $headers = [];

            curl_setopt($curl, CURLOPT_HEADERFUNCTION, function ($ch, $header) use (&$headers) {
                $matches = array();

                if ( preg_match('/^([^:]+)\s*:\s*([^\x0D\x0A]*)\x0D?\x0A?$/', $header, $matches) )
                {
                    $headers[$matches[1]][] = $matches[2];
                }

                return strlen($header);
            });

(在这里看到)

然后你把它存储在$headers["Location"][0].

我也和你一样,试图以这种方式获取 fb 页面图像,似乎不需要 PHP SDK、App 权限或 access_token,但可能存在一些限制(有人知道吗?)

于 2020-04-16T12:51:31.677 回答
-2

我如何获得位置部分

获取 Location 标题不是您的主要目标,对吗?您想从被重定向到的地址中获取图像,对吗?

因此,只需设置选项CURLOPT_FOLLOWLOCATION,cURL 将自动跟随该重定向并为您获取真实图像。

于 2012-07-13T18:09:06.573 回答