Add Whatsapp function to website, like sms, tel

JavascriptHtmlWhatsappUri Scheme

Javascript Problem Overview


I have a website that a lot of people view on mobile. I have link for : Call and SMS and I want to add one for Whatsapp, so a user can click the whatsapp link I create and start a conversation with me.

If this is possible can someone point me in the right direction on how?

Javascript Solutions


Solution 1 - Javascript

below link will open the whatsapp. Here "0123456789" is the contact of the person you want to communicate with.

href="intent://send/0123456789#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end">

Solution 2 - Javascript

Check this link out Launching Your iPhone App Via Custom URL Scheme

and more on the whats up url scheme document

I did a quick mock up and tried it on my iphone with a link like this from a webpage and it opened the app on my iphone.

<a href="whatsapp://send?text=Hello%2C%20World!">whatsapp</a>

I could not try to send a message as I don't have a current Whatsapp account sorry.

Add user name using abid parameter

let's say your whatsapp username was username then it would be

<a href="whatsapp://send?abid=username&text=Hello%2C%20World!">whatsapp</a>

once again sorry I can't test this. Also I have no idea what would happen if the username is the actual user of the current mobile device. eg. You try to whatsapp yourself.

Solution 3 - Javascript

Here is the solution to your problem! You just need to use this format:

<a href="https://api.whatsapp.com/send?phone=whatsappphonenumber&text=urlencodedtext"></a>

In the place of "urlencodedtext" you need to keep the content in Url-encode format.

UPDATE-- Use this from now(Nov-2018)

<a href="https://wa.me/whatsappphonenumber/?text=urlencodedtext"></a>

> Use: https://wa.me/15551234567 > > Don't use: https://wa.me/+001-(555)1234567 > > To create your own link with a pre-filled message that will > automatically appear in the text field of a chat, use > https://wa.me/whatsappphonenumber/?text=urlencodedtext where > whatsappphonenumber is a full phone number in international format and > URL-encodedtext is the URL-encoded pre-filled message. > > Example:https://wa.me/15551234567?text=I'm%20interested%20in%20your%20car%20for%20sale > > To create a link with just a pre-filled message, use > https://wa.me/?text=urlencodedtext > > Example:https://wa.me/?text=I'm%20inquiring%20about%20the%20apartment%20listing > > After clicking on the link, you will be shown a list of contacts you > can send your message to.

For more information, see https://www.whatsapp.com/faq/en/general/26000030

Solution 4 - Javascript

This is possible by creating the following link:

whatsapp://send?text=Hello this has been opened from the browser&phone=+PHONENUMBER&abid=+PHONENUMBER

Thanks to:

https://forum.ionicframework.com/t/open-whatsapp-intent-with-msg-specific-contact/73903/4

I have tested this on iOS, Windows Phone and Android

Solution 5 - Javascript

I just posted an answer on a thread similiar to this here https://stackoverflow.com/a/43357241/3958617

The approach with:

<a href="whatsapp://send?abid=username&text=Hello%2C%20World!">whatsapp</a>

and with

<a href="intent://send/0123456789#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end">whatsapp</a>

Only works if the person who clicked on your link have your number on their contact list.

Since not everybody will have it, the other solution is to use Whatsapp API like this:

<a href="https://api.whatsapp.com/send?phone=15551234567">Send Message</a>

Solution 6 - Javascript

Use:

https://wa.me/YOURNUMBER

where YOURNUMBER is without the two leading 00.

For instance for +37061204312 you write:

https://wa.me/37061204312

This link seems to work on mobiles and on desktop computers.

To prefill the message with text you can use:

https://wa.me/YOURNUMBER/?text=urlencodedtext

More in the Whatsapp FAQ: https://faq.whatsapp.com/en/android/26000030/

Solution 7 - Javascript

Rahul's answer gives me an error: You seem to be trying to send a WhatsApp message to a phone number that is not registered with WhatsApp..., even though I'm sending it to a registered WhatsApp number.

This, however works:

<li><a href="intent:0123456789#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end"><i class="fa fa-whatsapp"></i>+237 655 421 621</li>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser3041174View Question on Stackoverflow
Solution 1 - JavascriptRahul MamtaniView Answer on Stackoverflow
Solution 2 - JavascriptSteveView Answer on Stackoverflow
Solution 3 - Javascriptad08View Answer on Stackoverflow
Solution 4 - JavascriptTimView Answer on Stackoverflow
Solution 5 - JavascriptRafael AraújoView Answer on Stackoverflow
Solution 6 - JavascriptAvatarView Answer on Stackoverflow
Solution 7 - JavascriptCedric IpkissView Answer on Stackoverflow