Get Started with Ruby on Rails Framework
Sign up for a Plivo Account
When you sign up with Plivo, you will 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 purchase a number by clicking here. Add a number and credits to your account to start testing the full range of our voice and SMS service features.
Sign up here to get your free Plivo account today.
Follow these steps to successfully 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 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 Ruby Dev Environment
You must set up and install Ruby and Plivo’s Ruby SDK to make your first call. Here’s how.
Install Ruby
Operating System | Instructions |
---|---|
OS X & Linux | To see if you already have Ruby installed, run the command ruby --version in the terminal. If you don't have it installed, you can install it using homebrew. |
Windows | To install Ruby on Windows you can download it from here and install. |
Install Plivo Ruby Package
Create a project directory, run the following command:
$ mkdir myrubyapp
Change the directory to our project directory in the command line:
$ cd myrubyapp
Add this line to your application’s Gemfile:
gem 'plivo', '>= 4.3.0'
And then execute:
$ bundle
Or install it yourself as:
$ gem install plivo
Trigger the PHLO
Once you have created and setup your Ruby 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 file called trigger_phlo.rb
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
require 'rubygems'
require 'plivo'
include Plivo
AUTH_ID = 'AUTH_ID'
AUTH_TOKEN = 'AUTH_TOKEN'
client = Phlo.new(AUTH_ID, AUTH_TOKEN)
# if credentials are stored in the PLIVO_AUTH_ID and the PLIVO_AUTH_TOKEN environment variables
# then initialize client as:
# client = Phlo.new
begin
phlo = client.phlo.get('phlo_id')
response = phlo.run()
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
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 file called trigger_phlo.rb
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
require 'rubygems'
require 'plivo'
include Plivo
AUTH_ID = 'AUTH_ID'
AUTH_TOKEN = 'AUTH_TOKEN'
client = Phlo.new(AUTH_ID, AUTH_TOKEN)
# if credentials are stored in the PLIVO_AUTH_ID and the PLIVO_AUTH_TOKEN environment variables
# then initialize client as:
# client = Phlo.new
begin
phlo = client.phlo.get('phlo_id')
#parameters set in PHLO - params
params = {
From: '+14157778888',
To: '+14157778889'
}
response = phlo.run(params)
puts response
rescue PlivoRESTError => e
puts 'Exception: ' + e.message
end
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 use the below command to run your code.
$ ruby trigger_phlo.rb
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 API Request 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 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 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 Rails and the Plivo Ruby SDK
You must install rails, create a rails project and add Plivo’s Ruby SDK to make your first call. Here’s how.
Install Rails
Use the below command to install Rails
$ gem install rails
Create a Rails Project
As we have Rails and its dependencies installed, we can use them to create a new Rails project. As the initial step, using rails we can auto-generate code in the ruby on rails folder structure. Use the below command to start your Rails project.
$ rails new plivotest
This will create a plivotest
directory with the necessary folders & files for development.
Install Plivo
As we have the rails application created, now, let’s add Plivo-Ruby by modifying the Gemfile. Open the Gemfile in any IDE/text-editor and add the following line:
gem 'plivo', '~> 4.13.0'
You can use the below command to install the Plivo-Ruby gem into the bundle:
$ bundle install
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.
Create a Rails Controller
Change the directory to our newly created project directory, i.e, plivotest
directory and run the below command to create a rails controller for outbound sms.
$ rails generate controller Plivo sms
This will generate a controller named plivo_controller in the app/controllers/ directory and a respective view will be generated in app/views/plivo directory. We can delete the View as we will not need it.
$ rm app/views/plivo/sms.html.erb
Now, You have to open the app/controllers/plivo_controller.rb file and add the following code:
Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include Plivo
include Plivo::Exceptions
class PlivoController < ApplicationController
def outbound
api = RestClient.new("auth_id", "auth_token")
response = api.messages.create(
'+14151234567',
['+14157654321'],
'Hello, from Rails!'
)
puts response
render json: response.to_s
end
end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include Plivo
include Plivo::Exceptions
class PlivoController < ApplicationController
def outbound
api = RestClient.new("auth_id", "auth_token")
response = api.messages.create(
'+14151234567',
['+14157654321'],
'Hello, MMS from Rails!',
{
media_urls:['https://media.giphy.com/media/26gscSULUcfKU7dHq/source.gif'],
type: "mms",
media_ids:['801c2056-33ab-499c-80ef-58b574a462a2']
}
)
puts response
render json: response.to_s
end
end
- 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
- Replace the placeholder +14151234567 with the Phone number which you have purchased and +14157654321 with the phone number you will be sending sms to.
- Both +14151234567 and +14157654321 should be in E.164 format
Add a Route
Now, to add a route for the outbound function in the PlivoController class, open the config/routes.rb file and change the line:
get 'plivo/sms'
to
get 'plivo/outbound'
Test & Validate
Now the plivo_controller
is ready for your first sms call, you can use the below command to initiate your first outbound using Rails and Plivo Ruby SDK.
$ rails server
Your local development server will be started and you can test the rails app for outbound calls via the URL http://127.0.0.1:3000/plivo/outbound/.
Set up a Rails Server for Incoming Messages & Callbacks
In this section, we’ll walk you through how to set up a Rails server in under five minutes and start handling incoming SMS & callbacks.
Now, open the app/controllers/plivo_controller.rb file and add include the following code in the PlivoController class after the outbound function:
1
2
3
4
5
6
def inbound
from_number = params[:From]
to_number = params[:To]
text = params[:Text]
puts "Message received - From: #{from_number}, To: #{to_number}, Text: #{text}"
end
1
2
3
4
5
6
7
def inbound
from_number = params[:From]
to_number = params[:To]
text = params[:Text]
media_url = params[:Media0]
puts "Message received - From: #{from_number}, To: #{to_number}, Text: #{text}, Media: #{media_url}"
end
Add a Route
Now, you need to add a route for the inbound function in PlivoController class, open the config/routes.rb file and add the below line after the outbound route:
get 'plivo/inbound'
Test & Validate
Now the plivo_controller
is ready for your first inbound call, you can use the below command to receive your first inbound using Rails and Plivo Ruby SDK.
$ rails server
Your local development server will be started and you can test the rails app for inbound sms via the URL http://127.0.0.1:3000/plivo/inbound/.
Exposing your local server to the internet
To receive Incoming SMS 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.
# Whitelist Ngrok domain
config.hosts << /[a-z0-9]+\.ngrok\.io/
Run ngrok on the port which currently hosts your application. For example, if your port number is 3000, run the following command:
./ngrok http 3000
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.
You can check the app in action on https://6ea358b0f703.ngrok.io/receivecall/
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.
Now, open the app/controllers/plivo_controller.rb file and add include the following code in the PlivoController class after the inbound function:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def forward
from_number = params[:From]
to_number = params[:To]
text = params[:Text]
# send the details to generate an XML
response = Response.new
params = {
src: to_number,
dst: from_number,
}
message_body = "Thank you, we have received your request"
response.addMessage(message_body, params)
xml = PlivoXML.new(response)
puts xml.to_xml
render xml: xml.to_xml
end
Add a Route
Now, you need to add a route for the inbound function in PlivoController class, open the config/routes.rb file and add the below line after the inbound route:
get 'plivo/forward'
Test & Validate
Now the plivo_controller
is ready to forward the incoming calls to your Plivo numberl, you can use the below command to start the Rails server to forward incoming calls and to handle callbacks.
$ rails server
Your local development server will be started and you can test the rails app for outbound sms via the URL http://127.0.0.1:3000/plivo/forward/.
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.