有谁知道如何使用
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; }); } } });
您也可以使用< img>使用特殊URL标记以执行相同的操作:
原文链接:https://www.f2er.com/php/136225.html<img src="http://graph.facebook.com/<UID>/picture?type=square" />