0
我試着圖形API:我可以獲取用戶牆上發佈的全尺寸照片嗎?
https://developers.facebook.com/tools/explorer?method=GET&path=BillGates%2Fposts
但它返回一個小尺寸的照片(標記picture
下)。如何以更大的尺寸獲得該照片的鏈接?我可以嗎?
我試着圖形API:我可以獲取用戶牆上發佈的全尺寸照片嗎?
https://developers.facebook.com/tools/explorer?method=GET&path=BillGates%2Fposts
但它返回一個小尺寸的照片(標記picture
下)。如何以更大的尺寸獲得該照片的鏈接?我可以嗎?
我不認爲有任何連接的郵件,你正在提取根據https://developers.facebook.com/docs/reference/api/post/直接得到更大的照片尺寸。
但是你可以從同類型的「照片」,然後將帖子「OBJECT_ID」獲取照片對象本身得到那裏的所有影像尺寸:https://developers.facebook.com/tools/explorer?method=GET&path=10151450339221961
應該再擁有的所有的圖像屬性照片的圖片大小:
"images": [
{
"height": 393,
"width": 700,
"source": "https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash4/417933_10151450339221961_1121449374_n.jpg"
},
{
"height": 393,
"width": 700,
"source": "https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash4/417933_10151450339221961_1121449374_n.jpg"
},
{
"height": 336,
"width": 600,
"source": "https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash4/s600x600/417933_10151450339221961_1121449374_n.jpg"
},
{
"height": 269,
"width": 480,
"source": "https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash4/s480x480/417933_10151450339221961_1121449374_n.jpg"
},
{
"height": 179,
"width": 320,
"source": "https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-ash4/s320x320/417933_10151450339221961_1121449374_n.jpg"
},
{
"height": 101,
"width": 180,
"source": "https://fbcdn-photos-h-a.akamaihd.net/hphotos-ak-ash4/417933_10151450339221961_1121449374_a.jpg"
},
{
"height": 72,
"width": 130,
"source": "https://fbcdn-photos-h-a.akamaihd.net/hphotos-ak-ash4/417933_10151450339221961_1121449374_s.jpg"
},
{
"height": 72,
"width": 130,
"source": "https://fbcdn-photos-h-a.akamaihd.net/hphotos-ak-ash4/s75x225/417933_10151450339221961_1121449374_s.jpg"
}
]
但我怎麼能知道我應該採取?沒有「大/中/小」標籤,我不能隨意選擇:( – markzzz 2013-05-13 15:45:37
是的,沒有簡單的方法可以獲得,因爲我認爲這些照片有各種尺寸和標準。最好的方法是使用索引爲0的照片以獲得最大的照片,通常按照從大到小的順序排列,否則,您必須使用「高度」和「寬度」屬性,然後選擇適合您的最適合的照片。 – JayNCoke 2013-05-13 15:50:55