How to Migrate Your PHP SMS Application from Twilio to Plivo

How to Migrate Your PHP SMS Application from Twilio to Plivo

Migrating your PHP SMS app from Twilio to Plivo is a seamless and painless process. The two companies’ API structures, implementation mechanisms, XML structure, SMS message processing, and voice call processing are similar. We wrote this technical comparison so that you can scope between Twilio and Plivo APIs for a seamless migration.

Understanding the differences between Twilio and Plivo development

Most of the APIs and features that are available on Twilio are also available on Plivo and the implementation mechanism is easier as the steps involved are almost identical. This table gives a side-side comparison of the two companies’ features and APIs. An added advantage with Plivo is that not only can you code using the old familiar API/XML method, you can also implement your use cases using PHLO (Plivo High Level Objects), a visual workflow builder that lets you create workflows by dragging and dropping components onto a canvas — no coding required.

Features and APIs Twilio Plivo Similarities Implementation Interface
SMS API: Send SMS/MMS messages Request and response variables’ structure API
PHLO
Managed number pool for US/CA Messaging Copilot Powerpack Feature parity API
Console
Geo Permissions Feature parity Console
SMS Sender ID registration Feature parity Console
Number Lookup API API Parity API
Phone number management Feature parity API
Console
Validating Requests Feature parity API
XML
Subaccounts Feature parity API
HTTP callbacks Feature parity API
XML
PHLO

Plivo offers one unique advantage: Not only can you code using APIs and XML, you can also implement your use cases using PHLO (Plivo High Level Objects), a visual workflow builder that lets you create workflows by dragging and dropping components onto a canvas — no coding required.

Plivo account creation

Start by signing up for a free trial account that you can use to experiment with and learn about our services. The free trial account comes with free credits, and you can add more as you go along. You can also add a phone number to your account to start testing the full range of our voice and SMS features. A page in our support portal walks you through the signup process.

You can also port your numbers from Twilio to Plivo, as we explain in this guide.

Migrating your PHP SMS application

You can migrate your existing application from Twilio to Plivo by refactoring the code, or you can try our intuitive visual workflow builder PHLO. To continue working with the APIs, use one of the quickstart guides to set up a development environment for your preferred language. Plivo offers server SDKs in seven languages: PHP, Node.js, .NET, Java, Python, Ruby, and Go. For another alternative that lets you evaluate Plivo’s SMS APIs and their request and response structure, use our Postman collections.

How to send an SMS message

Let’s take a look at the process of refactoring the code to migrate your app from Twilio to Plivo to set up a simple PHP application to send an SMS message by changing just a few lines of code.

Twilio Plivo
<?php
require __DIR__ . '/vendor/autoload.php';
use Twilio\Rest\Client;
$account_sid =
getenv('TWILIO_ACCOUNT_SID');
$auth_token =
getenv('TWILIO_AUTH_TOKEN');
$twilio_number = "<destination_number>";
$client = new Client($account_sid, $auth_token);
$client->messages->create( 
    '<source_number>' , 
    array(
    'from' => $twilio_number,
    'body' => 'Hello'
));
                  
<?php
require 'vendor/autoload.php';
use Plivo\RestClient;
$authId = getenv('PLIVO_AUTH_ID');
$authToken = getenv('PLIVO_AUTH_TOKEN');
$client = new RestClient($authId, $authToken);
$response = $client->messages->create(
        [
            "src" => "<source_number>", 
            "dst" => "<destination_number>", 
            "text" => "Hello", 
        ]);
print_r($response);
?>
            

Alternatively, you can implement the same functionality using one of our PHLO templates. For example, if you want to send an SMS message, your PHLO would be this:

Create PHLO for outbound SMS

How to receive and reply to SMS

You can migrate an application for receiving and replying to an incoming SMS from Twilio to Plivo just as seamlessly, as in this example:

Twilio Plivo
<?php
require_once "vendor/autoload.php";
use Twilio\TwiML\MessagingResponse;
header("content-type: text/xml");
$response = new MessagingResponse();
$response->message("Hello");
echo $response;
            
<?php
namespace App\Http\Controllers;
require '../../vendor/autoload.php';
use Plivo\RestClient;
use Plivo\XML\Response;
use Illuminate\Http\Request;
class SMSController extends Controller
{
    public function forwardsms()
    {
        $number = $_POST["From"];
        $to = $_POST["To"];
        $text = $_POST["Text"];
        $response = new Response();
        $params = array(
            'src' => <to_number> ,
            'dst' => <from_number> ,
        );
        $message_body = "Hello";
        $response->addMessage($message_body, 
        $params);
        Header('Content-type: text/xml');
        return $response->toXML();
    }
}
            

Here again, you can implement the same functionality using one of our PHLO templates. Your PHLO would look like:

With Dynamic Payload

For more information about migrating your SMS applications to Plivo, check out our detailed use case guides, available for all seven programming languages and PHLO.

How to send an MMS message

Let’s take a look at the process of refactoring the code to migrate your app from Twilio to Plivo to set up a simple PHP application to send an MMS message by changing just a few lines of code.

Twilio Plivo
<?php 
require_once '/path/to/vendor/autoload.php';
use Twilio\Rest\Client;
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);
$message = $twilio->messages->create(
    "<destination_number>", 
        [
            "body" => "Hello",
            "from" => "<source_number>", 
            "mediaUrl" => ["https://c1.staticflickr
     .com/3/2899/14341091933_1e92e62d12_b.jpg"]
        ]
        );
print($message->sid);
   
<?php
require 'vendor/autoload.php';
use Plivo\RestClient;
$authId = getenv('PLIVO_AUTH_ID');
$authToken = getenv('PLIVO_AUTH_TOKEN');
$client = new RestClient($authId, $authToken);
$response = $client->messages->create([
        "src" => "<source_number>", 
        "dst" => "<destination_number>", 
        "text" => "Hello", 
        "type" => "mms", 
        "media_urls" => ["https://media.giphy.
com/media/26gscSULUcfKU7dHq/source.gif"], 
        "media_ids" => ["801c2056-33ab-
499c-80ef-58b574a462a2"], 
        ]);
print_r($response);
?>
            

Alternatively, you can implement the same functionality using one of our PHLO templates. For example, if you want to send an MMS message, your PHLO would be this:

Create PHLO for outbound MMS

More use cases

You can migrate your applications serving other use cases too.

Simple and reliable

And that’s all there is to migrate your PHP SMS app from Twilio to Plivo either using Plivo’s PHP SDK or PHLO. Our simple APIs work in tandem with our Premium Communications Network to guarantee the highest possible delivery rates and the shortest possible delivery times for your SMS messages. See for yourself — sign up for a free trial account.

The State of Marketing in 2024

HubSpot's Annual Inbound Marketing Trends Report

Frequently asked questions

No items found.
footer bg

Subscribe to Our Newsletter

Get monthly product and feature updates, the latest industry news, and more!

Thank you icon
Thank you!
Thank you for subscribing
Oops! Something went wrong while submitting the form.

POSTS YOU MIGHT LIKE