Twilio is launching a new Console. Some screenshots on this page may show the Legacy Console and therefore may no longer be accurate. We are working to update all screenshots to reflect the new Console experience. Learn more about the new Console.
With just a few lines of code, your application can send and receive messages with WhatsApp using the Twilio API for WhatsApp.
This WhatsApp Quickstart will teach you how to do this using the Twilio Sandbox for WhatsApp, Java, the Twilio Java Twilio helper library, and the Spark web framework. In this Quickstart, you will learn how to:
Prefer to watch a video? The video below shows you how to use the Sandbox to send and receive WhatsApp messages.
Before you can send a WhatsApp message from your web language, you'll need to sign up for a Twilio account or sign into your existing account and activate the Twilio Sandbox for WhatsApp. It allows you to prototype with WhatsApp immediately using a shared phone number, without waiting for a dedicated number to be approved by WhatsApp.
To get started, select a number from the available sandbox numbers to activate your sandbox.
Be sure to take note of the phone number you choose in the Sandbox. You will need this later when we're ready to send some messages.
Before you can send any messages, you'll need to gather your Twilio account credentials. You can find these in the Twilio Console.
For all of our code snippets and curl examples, you will need to authenticate with the Account SID and Auth Token.
The next steps will involve writing some code. We've written up development environment setup in Java, where you'll set up a dev environment and prepare to build a web app with Servlets.
f you haven't yet set up your development environment to write some Java, head there first to get ready - and don't worry, Spark is just one step further. This quickstart will be waiting.
The WhatsApp Sandbox uses a single WhatsApp Sender shared by all Twilio users. To begin using the WhatsApp Sandbox, you must send a join message from the number you wish to send outbound messages. Each number may only receive messages from one WhatsApp Sandbox at a time.
When registering your own WhatsApp Sender, these limits do not apply. Learn how to register your own WhatsApp Senders.
Send "join <your sandbox keyword>
" to your Sandbox number in WhatsApp to join your Sandbox, and we'll reply with a confirmation that you've joined. Your sandbox keyword can be found in the console.
Once you join, you will only receive messages from your specific Sandbox. To disconnect from the sandbox, you can reply to the message from WhatsApp with sandbox stop
, or switch to a different sandbox by messaging join <other sandbox keyword>
.
To invite someone else to your sandbox, create a link with the following format containing the opt-in message and send it to them: whatsapp://send?phone=<Your Sandbox Number>&text=<your URL-encoded sandbox keyword>
You can also create a QR code with the link format above that users can scan on their phone to opt-in to your sandbox.
To send a message, use the following code and replace the to parameter with the phone number for your personal WhatsApp account in the E.164 format. (If you haven't already, install WhatsApp on your device and register for an account.) For the from parameter, be sure to include the whatsapp:
channel identifier before the Sandbox number in E.164 format.
For the From
parameter, you need your Sender ID
which should be shown on the installed channel in the Twilio Console, as shown previously.
1// Install the Java helper library from twilio.com/docs/java/install23import com.twilio.type.PhoneNumber;4import com.twilio.Twilio;5import com.twilio.rest.api.v2010.account.Message;67public class Example {8// Find your Account SID and Auth Token at twilio.com/console9// and set the environment variables. See http://twil.io/secure10public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");11public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");1213public static void main(String[] args) {14Twilio.init(ACCOUNT_SID, AUTH_TOKEN);15Message message = Message16.creator(new com.twilio.type.PhoneNumber("whatsapp:+15005550006"),17new com.twilio.type.PhoneNumber("whatsapp:+14155238886"),18"Hello there!")19.create();2021System.out.println(message.getBody());22}23}
1{2"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",3"api_version": "2010-04-01",4"body": "Hello there!",5"date_created": "Thu, 24 Aug 2023 05:01:45 +0000",6"date_sent": "Thu, 24 Aug 2023 05:01:45 +0000",7"date_updated": "Thu, 24 Aug 2023 05:01:45 +0000",8"direction": "outbound-api",9"error_code": null,10"error_message": null,11"from": "whatsapp:+14155238886",12"num_media": "0",13"num_segments": "1",14"price": null,15"price_unit": null,16"messaging_service_sid": "MGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",17"sid": "SMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",18"status": "queued",19"subresource_uris": {20"media": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages/SMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Media.json"21},22"tags": {23"campaign_name": "Spring Sale 2022",24"message_type": "cart_abandoned"25},26"to": "whatsapp:+15005550006",27"uri": "/2010-04-01/Accounts/ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Messages/SMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.json"28}
When someone replies to one of your messages, you will receive a webhook request from Twilio.
You can configure webhooks by connecting your Sandbox to an app you've already built for handling incoming messages, or build a new one for WhatsApp messages.
This webhook request also supports TwiML (the Twilio Markup Language) just like a regular Twilio SMS request.
To handle this request, you need to set up a web application and expose it to the internet. The Java Programmable Messaging Quickstart shows you how to respond to a message and generate TwiML in Java with Spark.
And - that's all there is to it; receiving and responding is exactly the same as you would do in any SMS app with our Messaging API. Cool, right?
Although these Quickstarts show you how to receive an SMS message, the webhook that Twilio will send will include the same parameters as an incoming SMS message, with the exception that To and From addresses will be set to the WhatsApp number receiving the message (whatsapp:<E.164 formatted Twilio phone number associated with your business>
) and the WhatsApp number sending the message (whatsapp:<User's E.164 phone number>
), respectively.
Because the Twilio WhatsApp API is essentially the same as the Twilio Programmable Messaging API, all of the documentation for that API applies to your apps sending and receiving messages with WhatsApp. To dive deeper with a WhatsApp integration, see the WhatsApp documentation overview as well as the API Reference.
Here are some areas you might like to explore next.
We can't wait to see what kind of WhatsApp integration you build!