我正在尝试通过 react-native-fbsdk 包在 React Native 中将图像分享给 Facebook。
我有以下内容,几乎完全是从文档中复制的,但我不知道如何格式化imageUrl
,我不断收到错误说SharingContent is invalid
.
我在这里做错了什么?
const sharePhotoContent = {
contentType: 'photo',
photos: [
{
imageUrl: "./local/image/path.png",
userGenerated: false,
caption: "Hello World"
}
]
};
ShareDialog.canShow(sharePhotoContent).then(
function(canShow) {
if (canShow) {
return ShareDialog.show(sharePhotoContent);
}
}
).then(
function(result) {
if (result.isCancelled) {
AlertIOS.alert('Share cancelled');
} else {
AlertIOS.alert('Share success with postId: ' + result.postId);
}
},
function(error) {
AlertIOS.alert('Share fail with error: ' + error);
}
);