Get Started with Java using Spark Framework
Sign up for a Plivo Account
You can sign up with Plivo and start with a free trial account to experiment with and learn about our services. This free trial account comes with free credits. If you wish to continue with our service, you can add more credits and buy a number by clicking here. Add a number and credits to your account to test the full range of our voice and SMS service features.
Sign up here to get your free Plivo account today.
Follow these steps to sign up for a free trial account:
- Sign up with your work email address
- Check your inbox for an activation email from Plivo. Click on the link in the email to activate your account.
- Enter your mobile number to complete the phone verification step.
Sign up with your work email address
If you have any issues creating a Plivo account, please reach out to our Support Team for assistance.
Start your implementation with Plivo to make/receive calls using PHLO or the traditional API/XML way. PHLO allows you to create the call flows using its intuitive canvas and deploy it with few clicks. Refer to the instructions from the respective tabs below to start your integration with PHLO or XML as you wish.
Send Your First Outbound SMS/MMS
To send your first outbound sms, you can create and deploy a PHLO in just a few clicks using the PHLO canvas. PHLO also lets you visually construct your entire use-case. With PHLO, only pay for sms you send/receive. Building with PHLO is free.
Prerequisites
- Create a Plivo account (if you don’t have one already): Sign up with your work email address and complete the phone verification step using your mobile number.
- Set Up Your Ruby Dev Environment: To set up your dev environment in Ruby, please refer to the instructions available in the Set Up Your Ruby Dev Environment section.
- Buy a Plivo Number(optional): You must have a voice-enabled Plivo phone number if you wish to receive incoming sms. Purchase numbers from the Numbers section of your Plivo Console. It is also possible to purchase numbers using the Numbers API.
Create the PHLO
Create a PHLO to send your first outbound SMS/MMS by following these instructions:
- On the side navigation bar, click PHLO. The PHLO page will appear and display your existing PHLOs, if any exist. If this is your first PHLO, then the PHLO page will be empty.
- Click Create New PHLO to build a new PHLO.
- In the Choose your use-case window, click Build my own. The PHLO canvas will appear with the Start node.Note: The Start node is the starting point of any PHLO. You can choose between the four available trigger states of the start node; Incoming SMS, Incoming Call, and API Request. For this PHLO, we will use the API Request trigger state.
- From the list of components on the left-hand side, drag and drop the Send Message component onto the canvas. This will add an Send Message node onto the canvas.
- Connect the Start node with the Send Message node, using the API Request trigger state.
- Configure the Send Message node with the source/from number using the From field. Enter the destination number you wish to send message in the To field.
- If you’d like to send MMS then Configure the Media URLs node with the Media files you’d like to send using the Media URLs field.
- Once you have configured the node, click Validate to save the configurations.
- After you complete the configurations, provide a recognizable name for your PHLO and click Save. Your PHLO is now ready. You can trigger the PHLO and test it out. For more information, refer to the following section.
Set Up Your Java Spark Dev Environment
You must set up and install Java(Java 1.8 or higher) and Plivo’s Java SDK to make your first call. Here’s how.
Install Java
Operating System | Instructions |
---|---|
OS X & Linux | To see if you already have Java installed, run the command java -version in the terminal. If you do not have it installed, you can install it from here. |
Windows | To install Java on Windows follow the instructions listed here. |
Install Plivo Java Package using IntelliJ Idea
- Create a new project in IntelliJ Idea
- Choose a dependency management and Java SE SDK for the new project
- Install the Plivo Java package by adding the dependency in
pom.xml
<dependency>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>4.15.0</version>
</dependency>
Trigger the PHLO
Once you have created and setup your Java dev envrironment, you can go to your Plivo Consolse and copy the PHLO_ID. Integrate a PHLO into your application workflow by making an API request to trigger the PHLO with the required payload.
With Static Payload
You can choose to either configure the mandatory params required for a PHLO while creating the PHLO itself or, you can pass the params as payload while triggering the PHLO from your app.
Code
Now, create a Java class in the project called TriggerPhlo
and paste the following code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import com.plivo.api.Plivo;
import com.plivo.api.PlivoClient;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.phlo.Phlo;
import java.io.IOException;
public class Example
{
private static final String authId = "auth_id";
private static final String authToken = "auth_token";
private static PlivoClient client = new PlivoClient(authId, authToken);
public static void main(String[] args) throws IOException, PlivoRestException
{
String phloId = "Your PHLO ID";
Plivo.init(authId, authToken);
Phlo phlo = Phlo.getter(phloId).client(client).get();
PhloUpdateResponse response = Phlo.updater(phloId).payload().run();
}
}
With Dynamic Payload
To use dynamic values for the parameters, follow the below steps.
- Select the StartNode - under API request, fill the Payload key as
From
&To
and keep the values empty, then click validate & save.
- Use the liquid templating params while creating the PHLO and pass the values while triggering the PHLO.
Code
Now, create a Java class in the project called TriggerPhlo
and paste the following code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import com.plivo.api.Plivo;
import com.plivo.api.PlivoClient;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.phlo.Phlo;
import java.io.IOException;
public class Example
{
private static final String authId = "auth_id";
private static final String authToken = "auth_token";
private static PlivoClient client = new PlivoClient(authId, authToken);
public static void main(String[] args) throws IOException, PlivoRestException
{
String phloId = "Your PHLO ID";
Plivo.init(authId, authToken);
Phlo phlo = Phlo.getter(phloId).client(client).get();
Map<String, Object> payload = new HashMap<>();
payload.put("From", "+14157778888");
payload.put("To", "+14157778889");
PhloUpdateResponse response = Phlo.updater(phloId).payload(payload).run();
}
}
Get your Auth_ID and Auth_token from your dashboard
You can find the PHLO_ID on the PHLO Listing page.
Test and Validate
Save the file and run it from Intellij.
Receive Your First Inbound SMS/MMS
Create and deploy a PHLO to receive your first inbound SMS and forward to your web server with a few clicks on the PHLO canvas. PHLO also lets you visually construct your entire use-case. With PHLO, only pay for calls you make/receive. Building with PHLO is free.
Prerequisites
- Create a Plivo account (if you don’t have one already): Sign up with your work email address and complete the phone verification step using your mobile number.
- Buy a Plivo number: You must have a sms-enabled Plivo phone number to receive incoming calls. Purchase numbers from the Numbers section of your Plivo Console. It is also possible to purchase numbers using the Numbers API.
- PHLO Application: When you receive a call on a Plivo sms-enabled number, you can control the call flow by associating a PHLO application to that Plivo phone number. Plivo will fetch the PHLO associated with the number and expect valid instructions via PHLO to handle the sms.
Create the PHLO
You can create a PHLO by referring to the below instructions to receive your first incoming call:
- On the side navigation bar, click PHLO. The PHLO page will appear and display your existing PHLOs, if any exist. If this is your first PHLO, then the PHLO page will be empty.
- Click Create New PHLO to build a new PHLO.
- In the Choose your use-case window, click Build my own. The PHLO canvas will appear with the Start node.Note: The Start node is the starting point of any PHLO. You can choose between the four available trigger states of the start node; Incoming SMS, Incoming Call, and API Request. For this PHLO, we will use the Incoming Message trigger state.
- From the list of components on the left-hand side, drag and drop the HTTP Request component onto the canvas. This will add a HTTP Request node onto the canvas.
- Connect the Start node with the HTTP Request node, using the Incoming Message trigger state.
- Configure the HTTP Request node to send the details to your Web Server.
- Once you have configured the node, click Validate to save the configurations.
- After you complete the configurations, provide a recognizable name for your PHLO and click Save. Your PHLO is now ready.
Assign the PHLO to a Plivo Number for Incoming SMS/MMS
Once you have created and configured your PHLO, assign your PHLO to a Plivo number.
To assign a PHLO to a number:
- Log in to your Plivo Console
- On the Product Navigation bar, click Phone Numbers.
- On the Numbers page, under Your Numbers, click the phone number you wish to use for the PHLO.
- In the Number Configuration window, select PHLO from the Application Type list.
- From the PHLO Name list, select the PHLO you wish to use with the phone number, and then click Update Number.
If you have not purchased a phone number yet, you can buy a phone number(s) by referring to the instructions available here.
Test and Validate
You can now send a message to your Plivo phone number to receive an incoming sms and see how the inbound sms is handled using PHLO.
For more information about creating a PHLO app, see the PHLO User Guide.
For information on components and their variables, see the PHLO Components Library.
Forward an Incoming SMS/MMS
To forward an incoming sms, you can create and deploy a PHLO with a few clicks on the PHLO canvas.
Prerequisites
- Create a Plivo account (if you don’t have one already): Sign up with your work email address and complete the phone verification step using your mobile number.
- Buy a Plivo number: You must have a sms-enabled Plivo phone number to receive incoming sms. Purchase numbers from the Numbers section of your Plivo Console. It is also possible to purchase numbers using the Numbers API.
- PHLO Application: When you receive a sms on a Plivo sms-enabled number, you can control the flow by associating a PHLO application to that Plivo phone number. Plivo will fetch the PHLO associated with the number and expect valid instructions via PHLO to handle the sms.
Create the PHLO
You can create a PHLO by referring to the below instructions to forward an incoming SMS/MMS:
- On the side navigation bar, click PHLO. The PHLO page will appear and display your existing PHLOs, if any exist. If this is your first PHLO, then the PHLO page will be empty.
- Click Create New PHLO to build a new PHLO.
- In the Choose your use-case window, click Build my own. The PHLO canvas will appear with the Start node.Note: The Start node is the starting point of any PHLO. You can choose between the four available trigger states of the start node; Incoming SMS, Incoming Call, and API Request. For this PHLO, we will use the Incoming Message trigger state.
- From the list of components on the left-hand side, drag and drop the Send Message component onto the canvas. This will add a Send Message node onto the canvas.
- Connect the Start node with the Send Message node, using the Incoming Message trigger state.
- Configure the Send Message node with the phone number to which you want to forward the Message. For example, in this case, “+14157778889”.
- Once you have configured the node, click Validate to save the configurations.
- After you complete the configurations, provide a recognizable name for your PHLO and click Save. Your PHLO is now ready.
Assign the PHLO to a Plivo Number to Forward Incoming SMS
Once you have created and configured your PHLO, assign your PHLO to a Plivo number.
To assign a PHLO to a number:
- Log in to your Plivo Console
- On the Product Navigation bar, click Phone Numbers.
- On the Numbers page, under Your Numbers, click the phone number you wish to use for the PHLO.
- In the Number Configuration window, select PHLO from the Application Type list.
- From the PHLO Name list, select the PHLO you wish to use with the phone number, and then click Update Number.
If you have not purchased a phone number yet, you can buy a phone number(s) by referring to the instructions available here.
Test and Validate
You can now send a sms to your Plivo phone number and see how the inbound sms is forwarded to the phone number specified in the PHLO.
For more information about creating a PHLO app, see the PHLO User Guide.
For information on components and their variables, see the PHLO Components Library.
Install Java and the Plivo Java package
You must set up and install Java(Java 1.8 or higher) and Plivo’s Java SDK to make your first call. Here’s how.
Install Java
Operating System | Instructions |
---|---|
OS X & Linux | To see if you already have Java installed, run the command java -version in the terminal. If you do not have it installed, you can install it from here. |
Windows | To install Java on Windows follow the instructions listed here. |
Install Plivo Java Package using IntelliJ Idea
- Create a new project in IntelliJ Idea
- Choose a dependency management and Java SE SDK for the new project
- Install the Plivo Java package by adding the dependency in
pom.xml
<dependency>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>4.15.0</version>
</dependency>
Send your first Outbound SMS/MMS
This section will guide you through how to use Plivo APIs to Send SMS from your application. First, let’s make sure you meet these prerequisites before we dive into the code.
- Plivo Auth Id and Auth Token: You will find your Plivo Auth Id and Auth Token on the home screen of your Plivo Console. Click here to sign-up for a Plivo account if you haven’t already!
- Plivo Phone Number: You must have a SMS-enabled Plivo phone number to send messages to the US and Canada. Purchase numbers from the Numbers section of your Plivo Console. It is also possible to purchase numbers using the Numbers API.
Now, create a Java class in the project called SendSMS
and paste the following code.
Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.io.IOException;
import java.util.Collections;
import com.plivo.api.Plivo;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.message.Message;
import com.plivo.api.models.message.MessageCreateResponse;
class SendSMS
{
public static void main(String [] args) throws IOException, PlivoRestException {
Plivo.init("auth_id","auth_token");
MessageCreateResponse response = Message.creator(
"+14151234567",
Collections.singletonList("+14157654321"),
"Hello, from Spark").create();
System.out.println(response);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io.IOException;
import java.util.Collections;
import com.plivo.api.Plivo;
import com.plivo.api.exceptions.PlivoRestException;
import com.plivo.api.models.message.Message;
import com.plivo.api.models.message.MessageCreateResponse;
class SendMMS
{
public static void main(String [] args) throws IOException, PlivoRestException {
Plivo.init("auth_id","auth_token");
MessageCreateResponse response = Message.creator(
"+14151234567",
Collections.singletonList("+14157654321"),
"Hello, MMS from Spark")
.type(MessageType.MMS)
.media_urls(new String[]{"https://media.giphy.com/media/26gscSULUcfKU7dHq/source.gif"})
.media_ids(new String[]{"801c2056-33ab-499c-80ef-58b574a462a2"}).create();
System.out.println(response);
}
}
- Replace the placeholders auth_id & auth_token with your credentials from Plivo Console.
- We recommend that you store your credentials in the auth_id & auth_token environment variables, so as to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and it will automatically fetch them from the environment variables
- You can use System.getenv() to store and retrieve environment variables while initializing the client.
- Replace the placeholder +14151234567 with the Phone number which you have purchased and +14157654321 with the phone number you will be sending SMS text messages to
- Both plivo_source_number and +14157654321 should be in E.164 format
Save the file and run it.
Set up a Spark Webapp for Incoming Messages & Callbacks
In this section, we’ll walk you through how to set up a Spark Webapp in under five minutes and start handling incoming messages & callbacks.
Plivo supports receiving SMS text messages in 9 countries (see complete SMS API coverage). When an SMS is sent to a Plivo phone number, you can receive the text on your server by setting a Message URL in your Plivo app. Plivo will send the message along with other parameters to your Message URL.
Set up a Spark Webapp
- Add Spark web app and SLF4J dependency:
<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.21</version>
</dependency>
Create a Java class named ReceiveSMS and paste the following code.
1
2
3
4
5
6
7
8
9
10
11
12
13
import static spark.Spark.*;
public class ReceiveSms {
public static void main(String[] args) {
get("/receive_sms", (request, response) -> {
String from_number = request.queryParams("From");
String to_number = request.queryParams("To");
String text = request.queryParams("Text");
System.out.println(from_number + " " + to_number + " " + text);
return "Message Received";
});
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import static spark.Spark.*;
public class ReceiveSms {
public static void main(String[] args) {
get("/receive_sms", (request, response) -> {
String from_number = request.queryParams("From");
String to_number = request.queryParams("To");
String text = request.queryParams("Text");
String media_url = request.queryParams("Media)");
System.out.println(from_number + " " + to_number + " " + text+" "+ media_url);
return "Message Received";
});
}
}
Run the project and you should see your basic server app in action on http://localhost:4567/receive_sms
Exposing your local server to the internet
To receive Incoming Messages and to handle callbacks, your local server should be able to connect with Plivo API service, Ngrok is a tunneling software used to expose a web server running on your local machine to the internet. Using Ngrok you can set webhooks which can talk to Plivo server.
You can download and install ngrok from here. Follow the detailed configuration instructions to get started.
Run ngrok on the port which currently hosts your application. For example, if your port number is 80, run the following command:
./ngrok http <port_on_which_your_local_server_is_running>
This will give you a UI with links that look like ngrok.io/*
which you can use to access your local server using the public network.
Create an Application
- Create an Application by visiting the Application Page and click on
New Application
. You can also use Plivo’s Application API. - Give your application a name. Let’s call it
Receive SMS
. Enter your server URL (e.g.http://example.com/receive_sms/
) in theMessage URL
field and set the method asPOST
. See our Application API docs to learn how to modify your application through our APIs. - Click on
Create
to save your application.
Assign a Plivo number to your app
- Navigate to the Numbers page and select the phone number you want to use for this app.
- Select
Receive SMS
(name of the app) from the Plivo App dropdown list. - Click on
Update
to save.
Test and validate
Send an SMS to your Plivo number using a regular mobile phone. Plivo will send a request to your Message URL
with the parameters listed in the XML Request - Messages Documentation.
Reply to an incoming SMS/MMS
When an SMS is sent to an Plivo phone number, you can receive the text on your server by setting a Message URL in your Plivo app. Plivo will send the message along with other parameters to your Message URL. You can reply back using the Plivo Message XML.
Create a Java class named ReplytoInbound and paste the following code.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import com.plivo.api.xml.Message;
import com.plivo.api.xml.Response;
import static spark.Spark.*;
class ReplytoInbound {
public static void main(String[] args) {
post("/reply_to_inbound/", (request, response) -> {
// Sender's phone number
String from_number = request.queryParams("From");
// Receiver's phone number - Plivo number
String to_number = request.queryParams("To");
// The text which was received
String text = request.queryParams("Text");
// Print the message
System.out.println(from_number + " " + to_number + " " + text);
response.type("application/xml");
Response resp = new Response()
.children(
new Message(To, From, "Thank you, we have received your request")
.callbackMethod("POST")
.callbackUrl("http://foo.com/sms status/")
.type("sms")
);
return resp.toXmlString();
});
}
}
Test and validate
Send an SMS to your Plivo number using a regular mobile phone and an automatic response will be sent from your Plivo number to your mobile phone. Also, Plivo will send a request to your Message URL
with the parameters listed in the Messages Documentation.