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);
}
);