gpt4 book ai didi

facebook - 如何使用 FB.api 方法上传带有 feed 的图像

转载 作者:行者123 更新时间:2023-12-02 20:12:52 26 4
gpt4 key购买 nike

我们正在使用 Fb API 在 Facebook 上发布帖子。

我的代码是 -

            if (response.authResponse) {                   
var data =
{
name: "link to apply",
picture: 'http://www.hrgp.biz/Uploads/CompanyForTesting_499/NotesReminders/2608chemtec-logo.jpg',
link: "http://www.hrgp.biz/bc0efdb3-f1a7-4d81-9635-d1418e808b6d.aspx", // Go here if user click the picture
description: "thank you"
}
FB.api('me/feed', 'post', data, function (response) {
if (!response || response.error) {
alert(JSON.stringify(response.error));
} else {
//alert('Post ID: ' + response.id);
alert('feed posted successfully.');
}
});
}
}, { scope: 'email,user_likes,publish_actions,publish_stream,read_stream,photo_upload' });

此代码有效,但我的图片有问题。它不会出现在帖子中。

我该如何解决这个问题?或者 如果我的代码有任何问题,请告诉我。

谢谢你..!!!

最佳答案

请引用What is the minimum width and height Of Facebook Open Graph Images? .

The ratio of both height divided by width and width divided by height (w/h, h/w) cannot exceed 3.0.

您的照片,http://www.hrgp.biz/Uploads/CompanyForTesting_499/NotesReminders/2608chemtec-logo.jpg ,250/65 = 3.84615384615明显超过最大比例:

enter image description here

关于facebook - 如何使用 FB.api 方法上传带有 feed 的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16662947/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com