我想通过WhatsApp直接与特定人共享PDF。还有其他方法吗?
我在下面尝试过,但并未直接分享给特定的人。
import Share from 'react-native-share';
Share.shareSingle(options);
我也尝试过此操作,但是它无法共享PDF,只能共享文本。
Linking.openURL(`whatsapp://send?text=${options}&phone=${options.phoneNumber}`);
更多代码:
filePath = resp.path();
(Platform.OS === 'android') ? filePath = 'file://' + filePath : filePath;
let options = {
type: 'application/pdf',
url: filePath,
title: "Share title",
message: "Share message",
subject: "Share subject",
social: Share.Social.WHATSAPP,
phoneNumber: "+60 12-345 6789"
};