function publish(){
var wallPost = {
message : "testing...",
picture: "http://seho.woto.net/fb/cordova_bot.png"
};
FB.api('/me/feed', 'post', wallPost , function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response);
}
});
}
当我使用上述功能发布到墙上时,帖子显示如下:
但我想要的是这样的:
所以我想知道如何在消息中添加图像?其他应用程序如何做到这一点?