我正试图通过文件上传在用户墙上发布照片,就像本例中的Facebook开放图一样。
/* make the API call */ FB.api(
"/me/photos",
"POST",
{
"source": "{image-data}"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
} );
我无法理解“图像数据”参数的含义 谁能清楚地告诉我它的意思是什么?
答案 0 :(得分:0)
在php中
使用'image' => '@' . $img
和$img = realpath('imgPath');
它可以正常使用
请注意,它会在您的服务器上加载,请求大约需要1.5 - > 2.5 MB ..
你也可以使用参数'url'通过链接分享它需要1kb。