0
我試圖通過文件上傳在用戶牆上發佈照片,就像本示例中的Facebook打開圖一樣。使用圖形API發佈圖像
/* make the API call */ FB.api(
"/me/photos",
"POST",
{
"source": "{image-data}"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
});
我無法理解他們的意思與「圖像數據」參數 任何人都可以清楚地對我有什麼它意味着什麼?