Hi as far as I know whatsapp
support abid
and text
parameters like below:
NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://send?text=Hello%2C%20World!"];
if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) {
[[UIApplication sharedApplication] openURL: whatsappURL];
}
But I want to send message to a new number. For example if my number is +123456
NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://send?abid=+123456"];
This doesn't work.
Because if the user insert the customer's whatsapp
number, the App should popup the whatsapp
message box with this number.
I noticed in some cases i can send message to number which is not listed in contact list. im wondering how it works.