Facebook通过FB.ui停止自定义参数(图像,标题,描述)吗?

时间:2019-04-26 15:30:38

标签: jquery facebook parameters sharing fb.ui

今天我检查我的网站,此代码不起作用:

<script>
...
    FB.ui({
            display: 'dialog',
            method: 'share_open_graph',
            action_type: 'og.likes',
            hashtag: '#Testing',
            action_properties: JSON.stringify({
                object: {
                    'og:image': img,
                    'og:image:secure_url': img,
                    'og:image:type': 'image/jpeg',
                    'og:image:width': w,
                    'og:image:height': h,
                    'og:image:alt': img,
                    'og:url': link,
                    'og:title': title,
                    'og:description': desc,
                    'fb:admins': fbadmin
                }
            })
        },
        function(response) {
            if (typeof response != 'undefined') {
                //Success
            } else {
                //Not Success;
            }
        });
</script>

使用此代码,来自https://developers.facebook.com/docs/sharing/reference/share-dialog/

FB.ui({
  method: 'share',
  href: link,
}, function(response){});

Facebook看到并拍摄了链接的照片,但没有看到我需要共享的照片。 显然,FB更改了共享策略。

现在如何自定义参数共享对象?如果此链接包含很多图片,如何设置自定义图片?

已编辑

在没有 og:url 的情况下,它再次起作用,但是在单击成功共享Facebook上的内容之后,重定向到了板载URL上,而不是我需要共享的URL上。

1 个答案:

答案 0 :(得分:0)

今天,我对此也感到很困难,对我来说,解决方案是从打开的图形对象中删除“ og:url”:链接,然后使其再次起作用。我只有网址,标题,描述和图片。