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 に答える