I am trying to implemented a link from IOS application to open whatsapp and start chat, send media and call.
so far with below link I am able to achieve the first two, is there any open URL to make a direct call using whatsapp from my app button click.
[https://www.whatsapp.com/faq/en/iphone/23559013][1]
Something like below example
NSURL *whatsappURL = [NSURL URLWithString:@"whatsapp://call:+6511112222?"];
if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) {
[[UIApplication sharedApplication] openURL: whatsappURL];
}