2

代码:

FB.ui({
        method: 'feed',
        name: "Test Name",
        link: "http://www.facebook.com",
        picture: "https://www.rwe-smarthome.de/is-bin/intershop.static/WFS/RWEEffizienz-SmartHome-Site/RWEEffizienz-SmartHome/de_DE/Energiesparpaket%20plus/Energiesparpaket-Plus_170px_198px.png",
        caption: '',
        description: "Some description goes here",
    },function(response) {
        if (response && response.post_id) {
            //alert('Post was published.');
        } else {
            //alert('Post was not published.');
        }
    });

上面的代码显示了一个 facebook 提要对话框,但没有图像。我认为问题在于图片参数的长度。将图片 URL 替换为任何其他短图像 URL 即可。我无法更改图片 URL,因为它来自网络服务。图片 url 的 Facebook 提要对话框是否有任何长度限制?

4

1 回答 1

0

尝试将参数设置为图像的非 HTTPS 版本。

于 2012-06-13T13:28:13.683 回答