如何通过Facebook提供的图片网址保存Facebook个人资料图片?

时间:2014-10-20 12:50:43

标签: php facebook

我使用以下代码通过facebbok提供的网址保存facebook个人资料照片

$data = file_get_contents('https://graph.facebook.com/[App-Scoped-ID]/picture?width=378&height=378&access_token=[Access-Token]');
$file = fopen('fblogo/fbphoto.jpg', 'w+');
fputs($file, $data);
fclose($file);

保存在所需位置但保存为0字节的图像表示损坏,请让我们知道如何正确保存图像

2 个答案:

答案 0 :(得分:1)

这看起来像我在这个帖子中的回答:Save facebook profile image using cURL

尝试将redirect = false添加到API调用中以获取图片的真实位置。如果这不起作用,请尝试使用CURL:

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, 'https://graph.facebook.com/' . $app_scoped_id . '/picture?width=378&height=378&redirect=false&access_token=xxx');
$data = curl_exec($ch);
$data = json_decode($data);

这将获得真实的URL,您可以使用另一个调用来获取图像:

curl_setopt($ch, CURLOPT_URL, $data->data->url);
$data = curl_exec($ch);
curl_close($ch);

如果这也不起作用,请确保您的提供商支持CURL请求:)

答案 1 :(得分:0)

我用这个:

$image = json_decode(file_get_contents("https://graph.facebook.com/$data[id]/picture?width=800&height=600&redirect=false"),true);
$image = file_get_contents($image['data']['url']);
file_put_contents("desired_filename.jpg",$image);