我正在使用react-native-share来共享内容,链接和图像。 在这里我可以在android和ios的所有应用程序中分享所有这些,除了ios中的Whatsapp。
我已根据react-native-share
中的说明添加了原生依赖项。我添加了所有这些
<key>LSApplicationQueriesSchemes</key>
<array>
<string>whatsapp</string>
<string>mailto</string>
</array>
如何在ios whatsapp中完成此操作?
_downloadImageAndShare(url ,title, message) {
RNFetchBlob.config({ fileCache: true })
.fetch('GET', url)
.then(resp => resp.readFile('base64')
.then(base64 => ({ resp, base64 })))
.then(obj => {
const headers = obj.resp.respInfo.headers;
const type = headers['Content-Type'];
const dataUrl = 'data:' + type + ';base64,' + obj.base64;
return { url: dataUrl, title, message };
})
.then(options => Share.open(options)).catch(err => {err &&
console.log(err); })
}