Answers for "whatsapp link java"

8

whatsapp link

<!--just telephone number-->
https://wa.me/1XXXXXXXXXX

<!--Telephone with message-->
https://wa.me/1XXXXXXXXXX?text=I'm%20interested%20in%20your%20car%20for%20sale
Posted by: Guest on July-03-2021
0

api whatsapp link

<!-- 
	Make a link to start a chat with a specific phone number.
	
	- Replace the xxxxxxxxxx with a valid phone number,
-->
<a href="https://wa.me/xxxxxxxxxx">Click here to chat</a>

<!-- 
	Make a link to start a chat with a specific phone number and
	a prefilled message.
	
	- Replace the xxxxxxxxxx with a valid phone number,
	- Don't forget to urlencode the text as per the example.
-->
<a href="https://wa.me/xxxxxxxxxx?text=This%20is%20a%20prefilled%20message">Click here to chat</a>

<!--
	Make a link that shares a prefilled message, but, lets the user
	choose a contact (from their phonebook) to send the message to,
	
	- Don't forget to urlencode the text as per the example.
-->
<a href="https://wa.me/?text=This%20is%20a%20prefilled%20message">Click here to chat</a>
Posted by: Guest on April-05-2022

Browse Popular Code Answers by Language