【发布时间】:2017-10-17 14:28:34
【问题描述】:
我正在尝试使用 react-native-fbsdk 将视频发布到 Facebook
到目前为止,我设法使用此代码将图像发布到 Facebook!
const sharePhotoContent = {
contentType: 'photo',
photos: [
{
imageUrl: uri,
userGenerated: false,
}
]
};
this.setState({ sharePhotoContent: sharePhotoContent, })
})
我尝试通过多种方式发布视频,但找不到正确的方式?
//这个不行!!
this.refs.viewShot.capture().then(uri => {
const shareVideoContent = {
contentType: 'video',
localUrl: image,
};
this.setState({ shareVideoContent: shareVideoContent, })
})
有人已经这样做了吗?
会很棒!
【问题讨论】:
标签: react-native fbsdk react-native-fbsdk