このテスト 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');
}
});
}
これはそれを呼び出した後の結果です。