How to send WhatsApp Messages in Java

Using the WhatsMate WA Gateway REST API



This article shows you how to send a WhatsApp message in Java.

Before the recipient can receive your WhatsApp message, she will need to register with the WhatsMate WA Gateway. Instructions are available on the official site. Unregistered users will never receive messages from the Gateway.

To send a WhatsApp message in Java, do this:

  1. Copy the following source code to a Java file named WhatsappSender.java.
  2. Customize the TODO lines:
    • Specify your gateway instance ID on line 9.
    • Specify your client ID and secret on lines 10 and 11.
    • Specify your target recipient on line 18. Remember to include the country code.
    • Specify your message on line 19.
  3. Compile the Java file: javac WhatsappSender.java
  4. Execute the class to send your message: java WhatsappSender

You will need a trial account to call the above API. Go sign up now.