我正在尋找使用Facebook Graph API獲取用戶頭像的最佳方式。通過文檔獲取Facebook信息更高分辨率的圖片
看,我發現這一點:
可以指定你想要的類型參數圖片尺寸,這應該是正方形的一個(50×50),小(50個像素寬,可變高度),正常(100個像素寬,可變高度)和大(約200像素寬,高度可變)
我的問題是:有沒有辦法讓比200像素分辨率更高的個人資料圖片?
我最近發現了這個解決辦法,但我不知道我怎麼可以檢查用戶是否有另一種語言的專輯:
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;
});
}
}
});
可能重複的[獲取全尺寸個人資料圖片](http://stackoverflow.com/questions/8574759/getting-full-size-profile-picture) – Brad