Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React native send a message to specific whatsapp Number

I'm trying to send a text message to a WhatsApp contact from a react-native apps , i found that i can do it through Linking

Linking.openURL('whatsapp://send?text=hello'); 

the code above opens only whats app , i need to open a chat with a specific number is there a paramter i have to send like text ?!

like image 290
Ahmed Ali Avatar asked Apr 20 '17 11:04

Ahmed Ali


People also ask

Can you automate sending WhatsApp messages?

WhatsApp does not have a feature to schedule any message within the app. Having said that, there are several third-party apps available on Google Play Store that lets users schedule any message at the given time and date.


1 Answers

You can use this to send a message to specific number:

Linking.openURL('whatsapp://send?text=hello&phone=xxxxxxxxxxxxx')

like image 88
Mahmoud Avatar answered Sep 22 '22 08:09

Mahmoud