我使用图形 api 将图像上传到朋友页面:
FB.api('/' + friendId + '/photos', 'post', {
message:'Why don’t you surprise your friends with a special Happy Holidays greeting on their timeline?,
url:picUrl
}, function(response){
if (!response || response.error) {}
console.log('Posting error: ' + response.error.message);
} else {
console.log('Post ID: ' + response.id);
}
});
一旦发生这种情况,我就会看到带有类似http://sphotos-b.ak.fbcdn.net/hphotos-ak-ash3/-IMAGEID-.jpg的网址的帖子
Facebook 是否会立即将图像放在 CDN 上,并且我可以删除服务器上的本地图像?只是想知道,因为我找不到任何关于它的文档。