We won't cover that in this article, but if it applies to you, click this link to learn whatsapp philippines number more and sign up. Click the Complete Messaging Service Setup button . Complete the setup Click Complete Messaging Service Setup to complete the setup of your messaging service and alphanumeric sender. You will be prompted to perform a test in the console. You can also access it by navigating through the console menus: Messaging > Try it out > Send an SMS. A warning message may indicate that there is no phone number configured for this messaging service.
You can safely ignore this. After all, it makes sense not to need a phone number when using an alphanumeric sender. A cURL command will appear, you can copy and paste it into your terminal. Enter your Auth Token to receive an SMS on your phone from your alphanumeric sender. Note that you cannot reply to it. Sending SMS from Alphanumeric Senders in Java Code You now have everything you need set up in your Twilio account. Now let's move on to writing the code. If you want to take the next step, the full project is available on GitHub .

Creating a Maven Project Create a Maven project in your IDE (Integrated Development Environment). The easiest way to do this is to use your IDE's "New Project" wizard. After you have a Maven project set up, you can start coding. Use a recent version of Java By default, Maven assumes that you are using an older version of Java. Update the project to the latest version with the following XML snippet in pom.xml, if it is not already there: XML Copy the code <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> </properties> The Twilio library requires at least Java 8, knowing that version 11 is the most used currently.