我想与Facebook上的图片共享帖子,但如果共享对话框未显示且发布相同,则不想使用shareDialog
我尝试使用shareApi,但它返回此错误
共享失败,并显示错误:错误:(#200)已弃用该终结点,因为已弃用必需的权限publish_actions
const SharePhoto = { contentType:“照片”, 照片:[{imageUrl:资源}], }
ShareDialog.canShow(SharePhoto).then(
function(canShow) {
if (canShow) {;
return ShareApi.share(SharePhoto, '/me', 'test');
// return ShareDialog.show(SharePhoto);
}
}
).then(
function(result) {
if (result.isCancelled) {
console.log('Share cancelled');
} else {
console.log('Share success with postId: '
+ result.postId);
}
},
function(error) {
console.log('Share fail with error: ' + error);
}
);