gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 12:41:23 25 4
gpt4 key购买 nike

有谁知道如何使用 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;

});
}
}
});

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

最佳答案

您也可以只使用 <img>用一个特殊的 URL 标记来做同样的事情:

<img src="http://graph.facebook.com/<UID>/picture?type=square" />

关于php - 获取 facebook 缩略图个人资料图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5771929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com