Send Whatsapp message by Link on website

I would like to know how to send a message by a link to a certain number. I've been able to do for Android, but for iPhone it doesn't work.

Link:

<a href="intent://send/123456789#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end">
Author: Felipe Avelar, 2015-07-07

2 answers

For iPhone use, use this format:

whatsapp://send?text=Texto da mensagem com link http://google.com

 1
Author: Afonso, 2016-02-24 13:57:19

You can also create a link using the WhatsApp API and determine which target number. Also works with desktop applications:

<a href="https://api.whatsapp.com/send?phone=5511999999999">Enviar mensagem</a>

Important: you must enter the country code (55) and the DDD.

 1
Author: Afonso, 2017-05-30 12:27:31