如何在不使用react-native打开应用程序的情况下在whatsapp上发送消息?

时间:2019-03-29 03:21:18

标签: react-native whatsapp

是否有一种方法可以使用react-native在WhatsApp上自动发送消息?如果没有,我可以在Android上使用网桥吗?

3 个答案:

答案 0 :(得分:1)

如果这仅适用于whats应用,则可以使用此链接

https://wa.me/whatsappphonenumber/?text=urlencodedtext

其中whatsappphonenumber是国家代码+电话号码,不带有'+'号 例如印度:919876543210

urlencodedtext是您要发送的消息

这将打开whatsapp聊天并将消息复制到输入字段

答案 1 :(得分:0)

您可以使用这样的链接:

export const sendWhatsAppMessage = link => {
 if (!isUndefined(link)) {
  Linking.canOpenURL(link)
   .then(supported => {
     if (!supported) {
      Alert.alert(
        'Please install whats app to send direct message'
      );
    } else {
      return Linking.openURL(link);
    }
  })
  .catch(err => console.error('An error occurred', err));
} else {
  console.log('sendWhatsAppMessage -----> ', 'message link is undefined');
 }
};

答案 2 :(得分:0)

尝试此模块

https://github.com/react-native-community/react-native-share

希望这会有所帮助!