3

我在使用 Facebook 共享对话框时遇到问题:我希望能够让用户从多个og:image标签中选择他们想要共享的图像,就像这个答案中显示的那样: https ://stackoverflow.com/a/7623986 /2644146

如您所见,有一个左右箭头让用户选择他想要选择的图像。但是,我无法做到这一点。现在我的代码看起来像这样。

我的图像<meta>标签是:

<meta property="og:image" content="image_1.jpg" />
<meta property="og:image" content="image_2.jpg" />
<meta property="og:image" content="image_3.jpg" />

我正在使用 Javascript SDK 调用共享对话框:

$j('.my-button').on('click', function() {
  FB.ui({
    method: 'share',
    href: 'http://myshareurl.com',
  }, function(response){});
});

结果是一个只选择了一个图像的共享对话框(Facebook 默认选择第二个图像)。为什么 Facebook 不让用户选择三张图片中的一张?这种选择图像的能力被删除了吗?Facebook 挑选图片的标准是什么?例如,image_3.jpg具有比其他分辨率更高的分辨率,因此应该默认选择它。

4

0 回答 0