0

我一直试图在此测试 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');
        }
    });
}

这是调用之后的结果。

在此处输入图像描述

4

1 回答 1

0

文件说-

图片必须至少为 200 像素 x 200 像素。

你的图片是128x128。

希望它会有所帮助。祝你好运!

于 2013-11-08T19:57:08.900 回答