fb.api中的图片参数未显示

时间:2013-11-08 18:49:59

标签: javascript facebook facebook-graph-api facebook-javascript-sdk

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

这是调用后的结果。

enter image description here

1 个答案:

答案 0 :(得分:0)

documentation说 -

  

图片必须至少为200px×200px。

你的照片是128x128。

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