通过WhatsApp(React Native)直接将PDF分享给特定的人

时间:2019-12-30 09:57:14

标签: react-native pdf share whatsapp

我想通过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"
  };

0 个答案:

没有答案