我需要使用node.js fb api帮助facebook分享图片链接。
var attachment = {
message: 'test message',
picture : 'http://localhost:1337/images/image3.jpg',
link : options.link,
name: 'Go to image',
caption: 'taged you in a photo',
description: 'test 2'
};
FB.api('me/feed', 'post', attachment, function(res) {
if (!res || res.error) {
console.log("facebook error");
console.log(!res ? 'error occurred' : res.error);
}else{
console.log("facebook");
Logger("successfully posted", res);
}
});
上面的代码,工作但是,图像显示为空。 我想要点击图像。用户点击图片重定向我的页面。
任何人都可以帮助我。
感谢。
答案 0 :(得分:1)
您无法与localhost:#port
分享图片,因为 fb 无法访问该图片。只有具有公共访问权限的图像才能被facebook帖子使用。