Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Twilio Best Practices
Twilio Best Practices

Twilio Best Practices: Learn how to build powerful real-time voice and SMS applications with Twilio

eBook
€8.99 €19.99
Paperback
€24.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Twilio Best Practices

Chapter 2. Exploring the REST API

In this chapter, you'll learn the following topics:

  • What the Twilio REST API is
  • How the API works from a low-level perspective
  • Working with Twilio's PHP API library
  • Making RESTful requests directly using Postman
  • How to make the most of the Calls and Messages APIs
  • Turbo-charging your Twilio applications with Subaccounts, Phone Numbers, and Usage APIs

What is the Twilio REST API?

Twilio's REST API is the way in which you'll proactively interact with your Twilio account. This contrasts with TwiML, which is used to shape the flow of individual calls and incoming SMSes.

It programmatically gives you access to all of the data and features accessible from your Twilio dashboard, ranging from logs of previous calls to records of phone numbers you've purchased and is used to trigger outbound calls and SMS messages.

RESTful APIs are centered around data. Effectively, the API models various kinds of resources that Twilio holds, such as calls, phone numbers, or messages, and lets you perform Create, Read, Update, Delete (CRUD) operations on them.

If you're not familiar with REST APIs and how they work, IBM has a helpful primer at http://www.ibm.com/developerworks/library/ws-restful/.

Interacting with the API

Twilio's REST APIs are accessed over HTTP, that is to say, you make an HTTP request with the appropriate method, which is either GET, POST, PUT, or DELETE, and Twilio responds with data that represents the object you've created, read, updated, or deleted.

Fortunately, Twilio make our lives easier by providing API libraries in a range of languages. These are wrappers around the raw HTTP requests that Twilio understands, letting us interact with the API in a way that fits with the language we're working in.

At the time of writing, first-party API libraries (that is, libraries built by Twilio) are available in PHP, Ruby, Java, C#, Python, Node.js, and Apex (Salesforce's proprietary language). We'll want to use these when working with Twilio in our applications for the sake of simplicity and testability.

When getting started, it can be helpful to get a feel for working with the API by building the actual HTTP requests ourselves. There are a range...

Getting started with the Twilio PHP library

When you use one of Twilio's API libraries instead of working directly with more low-level HTTP requests, you'll interact with Twilio using simpler code that abstracts away details such as forming URLs, authenticating, and catching errors.

Twilio offers libraries in most major languages, but we'll look at PHP in order to stay in sync with Chapter 1, Working with TwiML.

The principles will be similar if you're using another language, but the syntax and grammar will be different. To see Twilio in action in Ruby, Python, C#, Java, Node.js, and Apex, head to Chapter 5, Twilio in your language.

Downloading the PHP library

First, you'll need to download the library. There are two options for doing this, which are matched across most languages you might use.

Downloading the code manually

Twilio publishes the source code for its API libraries on GitHub (https://github.com). GitHub is the most popular platform for online sharing and...

Getting started with Postman

Postman is a great tool to play with APIs such as Twilio's and even to test your own. It comes in the form of a Chrome application, and lets you build, create, and save HTTP requests, keeping track of what you sent and the response you got back.

Getting started with Postman

To get started, you'll need to make sure that you have Google Chrome installed (http://chrome.google.com), and then you can download Postman from Chrome's Web Store at https://chrome.google.com/webstore/detail/postman-rest-client-packa/fhbjgbiflinjbdggehcddcbncdddomop?hl=en.

Once installed, you'll be able to use Postman from Chrome's Apps screen. It'll also be installed as a standalone application that will be available from your Applications folder and Spotlight on Mac OS X, or from the Start menu on Windows.

Making your first request with Postman

Now that we have Postman installed, let's set it up to make requests to Twilio. We'll go through its interface and set everything up as...

Mastering call-related APIs

Now that we know in more abstract terms how the Twilio API works and have had an introduction to the PHP library and Postman, let's try our hand at playing with the API for real, starting with the Call resource.

All of our examples will include the URL and parameters you can use with Postman, plus a code sample for the PHP library.

Making a call

To make a call, we'll need to make a POST request to https://api.twilio.com/2010-04-01/Accounts/<your account SID>/Calls.json with the following parameters:

Parameter

Explanation

From

This refers to the phone number that will be used as the caller ID for this call (this must be one of your Twilio numbers or another one you own and have verified with Twilio).

To

This refers to the phone number you need to dial.

Url

This refers to a URL that serves TwiML, which should be used to handle this call. Either this or ApplicationSid must be specified.

ApplicationSid

This refers to the SID of an application...

What is the Twilio REST API?


Twilio's REST API is the way in which you'll proactively interact with your Twilio account. This contrasts with TwiML, which is used to shape the flow of individual calls and incoming SMSes.

It programmatically gives you access to all of the data and features accessible from your Twilio dashboard, ranging from logs of previous calls to records of phone numbers you've purchased and is used to trigger outbound calls and SMS messages.

RESTful APIs are centered around data. Effectively, the API models various kinds of resources that Twilio holds, such as calls, phone numbers, or messages, and lets you perform Create, Read, Update, Delete (CRUD) operations on them.

If you're not familiar with REST APIs and how they work, IBM has a helpful primer at http://www.ibm.com/developerworks/library/ws-restful/.

Interacting with the API


Twilio's REST APIs are accessed over HTTP, that is to say, you make an HTTP request with the appropriate method, which is either GET, POST, PUT, or DELETE, and Twilio responds with data that represents the object you've created, read, updated, or deleted.

Fortunately, Twilio make our lives easier by providing API libraries in a range of languages. These are wrappers around the raw HTTP requests that Twilio understands, letting us interact with the API in a way that fits with the language we're working in.

At the time of writing, first-party API libraries (that is, libraries built by Twilio) are available in PHP, Ruby, Java, C#, Python, Node.js, and Apex (Salesforce's proprietary language). We'll want to use these when working with Twilio in our applications for the sake of simplicity and testability.

When getting started, it can be helpful to get a feel for working with the API by building the actual HTTP requests ourselves. There are a range of great tools for doing...

Getting started with the Twilio PHP library


When you use one of Twilio's API libraries instead of working directly with more low-level HTTP requests, you'll interact with Twilio using simpler code that abstracts away details such as forming URLs, authenticating, and catching errors.

Twilio offers libraries in most major languages, but we'll look at PHP in order to stay in sync with Chapter 1, Working with TwiML.

The principles will be similar if you're using another language, but the syntax and grammar will be different. To see Twilio in action in Ruby, Python, C#, Java, Node.js, and Apex, head to Chapter 5, Twilio in your language.

Downloading the PHP library

First, you'll need to download the library. There are two options for doing this, which are matched across most languages you might use.

Downloading the code manually

Twilio publishes the source code for its API libraries on GitHub (https://github.com). GitHub is the most popular platform for online sharing and collaborating on code and...

Left arrow icon Right arrow icon

Description

If you have experience with at least one programming language and are looking to integrate Twilio into your applications, then this book is for you.

What you will learn

  • Develop applications that make and receive phone calls and messages
  • Access your call and SMS records and much more with the Twilio REST API
  • Replace physical phone hardware with calls in your browser or mobile app
  • Build powerful applications such as phone menus, call centers, and conferencing services
  • Work with Twilio in any programming language
  • Secure your application
  • Debug and test your Twilio integration thoroughly

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 23, 2014
Length: 178 pages
Edition : 1st
Language : English
ISBN-13 : 9781783552726
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Dec 23, 2014
Length: 178 pages
Edition : 1st
Language : English
ISBN-13 : 9781783552726
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 103.97
Mastering JavaScript Design Patterns
€36.99
Twilio Best Practices
€24.99
Twilio Cookbook: Second Edition
€41.99
Total 103.97 Stars icon
Banner background image

Table of Contents

9 Chapters
1. Working with TwiML Chevron down icon Chevron up icon
2. Exploring the REST API Chevron down icon Chevron up icon
3. Calling in the Browser with Twilio Client Chevron down icon Chevron up icon
4. Twilio in the Real World Chevron down icon Chevron up icon
5. Twilio in your language Chevron down icon Chevron up icon
6. Securing your Twilio App Chevron down icon Chevron up icon
7. Testing, Debugging, and Deploying Twilio Apps Chevron down icon Chevron up icon
8. Online Resources Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.5
(4 Ratings)
5 star 50%
4 star 50%
3 star 0%
2 star 0%
1 star 0%
Jeffrey H. Jul 09, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Survival guide for Twilio users - essential reading
Amazon Verified review Amazon
Alan Apr 07, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a great book if you are intrigued with the powers of Twilio but don't know where to start. Since that describes me, the book was a perfect fit. Tim starts with some basic examples of SMS and telephony applications, and works into more advanced topics such as keeping your account secure and making sure that you authenticate requests properly. A great resource for the aspiring Twilio developer.
Amazon Verified review Amazon
Sue May 11, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
It is useful, especially in print. I got the print version after noticing that some boxes were truncated in the Kindle version.The book may not have much more than the online documentation but I was having trouble getting 'jump started' on the online web of topics. This was helpful, but now I want more as there was not enough detail to fully satisfy me.I'm just getting to understand a fraction of the power to Twilio.
Amazon Verified review Amazon
Michael O'Flaherty Dec 11, 2016
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Decent overview of the subject matter. My only complaints are that the SMS and voice subject matter were intertwined; I would have preferred them as independent subjects/dedicated chapters. I am also a C# guy, so PHP as the primary code language not ideal. However, still useful and I would say helpful in getting me going.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.