I need to send a whatsapp message with a link in its content using twilio.
Here is my code:
Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
Message message = Message.creator(
new PhoneNumber("whatsapp:" + phoneNumber),
new PhoneNumber("whatsapp:" + PHONE_FROM),
"Hello: http://www.google.com")
.create();
How can I send a link on the body message. Please help!!