Book Image

Twilio Cookbook

By : Roger Stringer
Book Image

Twilio Cookbook

By: Roger Stringer

Overview of this book

Have you ever wanted to integrate phone features into a project you were working on? Maybe you wanted to send SMS messages to your customers about the latest sales? Maybe you want to set up a company directory with voice mail? Or maybe you want to add two factor authentication to your web sites to verify your users? Since Twilio was launched in 2007, developers have had a way to do these tasks. The power of Twilio's API is huge and lets you add any type of phone solution to your web site from 2-factor authentication for verifying your users, to setting up a company directory and a voice mail system. The possibilities are endless. "Twilio Cookbook" is your Swiss army knife for Twilio development, providing you with a number of clear step-by-step exercises. It helps you take advantage of the real power of the Twilio API, and gives you a good grounding in using it in your websites. This book looks at the Twilio API, and breaks down the mystery and confusion that surrounds adding telephone functionality to your websites. As you go through the recipes, you will learn how to take advantage of the Twilio API quickly and painlessly. You will learn how to build your own IVR system, company directory, and voicemail box, and also how to set up a 2-factor authentication system to verify users, track orders via SMS, send surveys using SMS, allow users to buy phone numbers, set up and delete sub-accounts, and check to see if a human is answering a phone call. We will also combine Twilio with other APIs to build a handy local search system such as a local business search, movie listings search, and web search. If you want to take advantage of using Twilio's API to add telephone functionality to your websites, then this book is for you. "Twilio Cookbook' will leave you with a black belt in Twilio development and enable you to integrate the API into your websites.
Table of Contents (17 chapters)
Twilio Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Letting a user purchase a custom phone number


Ok, once a user has signed up, he/she is going to need a phone number that he/she can call his/her own.

On signup, we forward the user to the /phone-number object, which is what we'll build in this recipe.

Getting ready

The complete source code for this recipe can be found in the Chapter9/Recipe3 folder in the source code for this book.

How to do it...

Our app will walk users through the process of searching for and purchasing a phone number using the following steps:

  1. Update the following index.php file:

    <?php
    include 'Services/Twilio.php';
    require("config.php");
    require("system/jolt.php");
    require("system/pdo.class.php");
    require("system/functions.php");
    
    $_GET['route'] = isset($_GET['route']) ? '/'.$_GET['route'] : '/';
    $app = new Jolt('site',false);
    $app->option('source', 'config.ini');
    #$pdo = Db::singleton();
    $mysiteURL = $app->option('site.url');
    
    $app->condition('signed_in', function () use ($app) {
            $app->redirect( $app...