如何从以下位置更改 Facebook 的 ShareDialog 格式:
(左边的图像和右边的文本)到这种格式:
(顶部的图像,底部的文本和 CTA 按钮) ?
我希望有一个横幅图像,而不是上图中的方形缩略图。这种帖子还有别的名字吗?
我正在使用来自React Native FBSDK的 ShareDialog,如下所示:
ShareDialog.canShow(shareLinkContent).then(
function(canShow) {
if (canShow) {
return ShareDialog.show( shareLinkContent );
}
}
).then(
function(result) {
if (! result.isCancelled && undefined !== result.postId) {
alert('Share operation was cancelled');
} else {
alert('Share was successful with postId: ' + result.postId);
}
},
function(error) {
alert('Error: ' + error);
}
);