我一直试图在此测试 Facebook 帖子上显示图像,但无济于事。请检查我的代码。图像/图片是存在的,因为它是我的头像。
function PostTest() {
FB.api('/me/feed', 'post', {
message: "This is the test message!",
source: 'http://www.test.com',
link: 'http://www.test.com',
picture: 'https://www.gravatar.com/avatar/dd703fc997aba7a8a8abc60f2613e570?s=128&d=identicon&r=PG&f=1'
}, function (response) {
if (response && response.id) {
alert('success');
} else if (response && response.error && 200 == response.error.code) {
alert('error');
}
});
}
这是调用之后的结果。