是否有一种方法可以使用react-native在WhatsApp上自动发送消息?如果没有,我可以在Android上使用网桥吗?
答案 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)