If you are an Android App developer you can make use of implicit Intents to share a message via WhatsApp Application.
WhatsApp share SnippetIntent sendToWhatsAppIntent = new Intent();
sendToWhatsAppIntent.setAction(Intent.ACTION_SEND);
sendToWhatsAppIntent.putExtra(Intent.EXTRA_TEXT, "This message would be shared via WhatsApp.");
sendToWhatsAppIntent.setType("text/plain");
startActivity(sendToWhatsAppIntent);
But if you are not an Android Java Native App developer and still want to integrate WhatsApp with your App or Website, it is now officially possible to share a message using HTML code to WhatsApp contacts, i.e. with your Website.
WhatsApp provides a custom URL (whatsapp://send?text=) to send a message with WhatsApp :
Any website can now send text messages to the WhatsApp chat application. One has to send a pre-filled text message to the custom URL scheme using an anchor tag. Opening Whatsapp://send?text= followed by the text to send, will open WhatsApp. The user can now choose a contact, and pre-fill the input field with the specified text.
Example: How to achieve this :<html>
<head>
<title>Send Message from Wesite to WhatsApp</title>
</head>
<body>
<a href="whatsapp://send?text=Message!">
Send Message to a Contact Via WhatsApp.</a>
</body>
</html>
Note: As the text message is sent as a Query String, do not forget to make the text URL encoded (example text="hello%20there!"). Also, note that this functionality may not work on webpages accessed from desktops (the page has to be accessed through an Android device having WhatsApp application installed on it)
Hope you find this information useful: read more on WhatsApp official page: whatsapp.com/faq/en/android/28000012
Hashtags : #Android #WhatsApp #Integration- Officially Send WhatsApp message using webpage (html)
- Share Multiple Images in WhatsApp using Android Intent
- How to Install WhatsApp application on Mac
- How to resolve Certificate Expired WhatsApp Error
- How to send WhatsApp message from your Android App using Intent
- [Solution] Installing Whatsapp There's insufficient space on the device
- WhatsApp launches WhatsApp Web to Access Messages over web browser
- How to know if someone has read your WhatsApp message
- Share Image to WhatsApp with Caption from your Android App
- WhatsApp Web escanner
- Can we move apps like WhatsApp, Facebook to external MicroSD card
- How to Change Eclipse Default Web Browser - Eclipse
- How to install tabnine on VS Code - HowTos
- How to Center Align Image in Bootstrap - CSS
- Connection Failed: 1130 PHP MySQL Error - MySQL
- Java SE 8 Update 301 available with various bug fixes and security improvements - Java
- Microsoft Teams Error code - 6 issue - Teams
- 11 Weeks of Android Online Sessions-15-Jun-to-28-Aug-2020 - Android
- Increase Android Emulator Timeout time - Android