https://blog.heckel.io/2013/07/07/se...sing-whatsapi/ buraya bir göz at istersen.
birde böyle bir kod buldum deneyebilirsin
// https://api.whatsapp.com/send?phone=+{{ *YOURNUMBER* }}&text=%20{{ *YOUR MESSAGE* }}var yourNumber = "{{ your number in string}}"var yourMessage = "{{ your message in string }}"// %20 mean space in link// If you already had an array then you just join them with '%20'// easy rightfunction getLinkWhastapp(number, message) { number = this.yourNumber message = this.yourMessage.split(' ').join('%20') return console.log('https://api.whatsapp.com/send?phone=' + number + '&text=%20' + message)}getLinkWhastapp()