php – 获取facebook缩略图个人资料图片

前端之家收集整理的这篇文章主要介绍了php – 获取facebook缩略图个人资料图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有谁知道如何使用 javascript sdk获取facebook用户缩略图/头像?

我知道要获得全尺寸图片我可以做以下事情:

//Get a list of all the albums
FB.api('/me/albums',function (response) {
  for (album in response.data) {

    // Find the Profile Picture album
    if (response.data[album].name == "Profile Pictures") {

      // Get a list of all photos in that album.
      FB.api(response.data[album].id + "/photos",function(response) {

        //The image link
        image = response.data[0].images[0].source;

      });
    }
  }
});

不确定如何获取缩略图/头像大小.像50×50大小的东西

您也可以使用< img>使用特殊URL标记以执行相同的操作:
<img src="http://graph.facebook.com/<UID>/picture?type=square" />
原文链接:https://www.f2er.com/php/136225.html

猜你在找的PHP相关文章