我正在开发一个将使用用户个人资料图片的应用。我正在尝试将用户的个人资料图片保存在我的服务器上以进行操作。
当我使用https://graph.facebook.com/[uid]/picture?type=large
时,它将无效,因为在服务图片之前,facebook会执行某种重定向。
任何人都可以帮我解决这个问题吗?我正在使用PHP。
答案 0 :(得分:0)
您可以将graph API to retrieve the direct URL用于用户的个人资料图片
https://graph.facebook.com/{user_id}/picture
答案 1 :(得分:0)
<?php
# You can do:
$userid = SOMEID;
$piclink = 'https://graph.facebook.com/'.$userid.'/picture?type=';
#then a option to choose the type,
#there is the small, normal, square and large type.
#So lets say you choose the large size:
$pictype = 'large';
$userpicture = $piclink . pictype;
# ----------------------------------
# Now that we have a picture link you can do various stuff like:
echo '<img src="';
echo $userpicture; # This will output the updated user picture with no problem
echo '" />';
?>
现在,如果你想要的是将图像保存到数据库,那么看看这个
http://www.phpriot.com/articles/images-in-mysql
然后在存储图像时使用$ userpicture来获取它。
答案 2 :(得分:0)
如果我正确理解您的问题,您可能正在使用file_get_contents来获取图像,但您只是回复文本响应,因为file_get_contents不会自动跟随文本响应包含的重定向?
一个快速而肮脏的解决方案是自己解析文本响应以找到实际图像的URL:
@file_get_contents('https://graph.facebook.com/'.$userid.'/picture?type=large');
foreach ($http_response_header as $rh) if (substr($rh, 0, 10)=='Location: ') $imgurl=substr($rh, 10);
然后你应该有你可以根据需要处理的实际图像网址。