Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whatsapp html call link [closed]

Is there a way to add a link on my website that will say "Call now" and when it's pressed the user can call from their whats app.

Any help would be very helpful. Thanks

like image 395
Aiden Doyle Avatar asked Mar 27 '16 04:03

Aiden Doyle


People also ask

Why WhatsApp call suddenly ended?

When experiencing issues with WhatsApp calls, please try connecting to a different network (such as Wi-Fi connection instead of mobile data, or vice versa). Your current network might not be properly configured for UDP (User Datagram Protocol) which may prevent WhatsApp Calling from functioning properly.

How call WhatsApp from HTML?

Use https://wa.me/whatsappphonenumber?text=urlencodedtext where whatsappphonenumber is a full phone number in international format and urlencodedtext is the URL-encoded pre-filled message.

How can get WhatsApp call link?

Here's how to create Call Link WhatsApp:Select and click on the Calls tab. Select Create Call Link. Choose between a voice call or a video call. To transmit a link using WhatsApp or another app, select Share Link or Copy Link.

Why isn't my WhatsApp link working?

Update WhatsApp to the latest version available on the Google Play Store. Upgrade your Android operating system to the latest version available for your device. Open your device's Settings > Network & internet > Internet > turn Wi-Fi off and on. Try connecting to different Wi-Fi hotspots.


2 Answers

Creating a telephone link is much like creating a mailto: link... your link would look like this:

<a href="tel:1234561234">Call ME!</a>

this tells browser plugins and smart phones that the link being followed is a telephone number and to use the default telephone application installed.

EDIT:

Based on feedback and what other users have commented, I would suggest trying this, I am unsure if this will work as expected but maybe try some different combinations.

<a href="whatsapp://tel:3216541234"></a>

Or

<a href="whatsapp://3216541234"></a>

if this works for you please mark the other user who posted this information as the right answer... I simply referenced his/her content, I knew this kind of thing existed but did not know the url design so they do deserve the credit.

SECOND EDIT: Visit this website to see kind of how this should work: https://www.whatsapp.com/faq/android/28000012

based on what I see here, I would actually guess it's more like:

<a href="whatsapp://call?number=##########"></a>

Please let us know the working result so I can modify my response to have the right answer. :)

like image 158
Metroidaron Avatar answered Nov 16 '22 01:11

Metroidaron


WhatsApp listens to URL patterns whatsapp://*, although I can't find any public documentation for it. Here is the documentation for sending a message for Android and iOS respectively.

like image 29
Pradeep Pati Avatar answered Nov 16 '22 01:11

Pradeep Pati