Quantcast
Channel: Hacker News 50
Viewing all articles
Browse latest Browse all 9433

SMS and Voice Integration With Twilio - Google App Engine — Google Developers

$
0
0

Comments:"SMS and Voice Integration With Twilio - Google App Engine — Google Developers"

URL:https://developers.google.com/appengine/articles/twilio


Twilio is powering the future of business communications, enabling developers to embed voice, VoIP, and messaging into applications. They virtualize all infrastructure needed in a cloud-based, global environment, exposing it through the Twilio communications API platform. Applications are simple to build and scalable. Enjoy flexibility with pay-as-you go pricing, and benefit from cloud reliability.

Twilio Voice enables your application to make and receive phone calls. Twilio SMS enables your application to send and receive text messages. Twilio Client allows you to make VoIP calls from any phone, tablet, or browser and supports WebRTC.

Pricing

Google App Engine customers receive complimentary credit for 2,000 SMS messages or inbound minutes when you upgrade. Redeem this Twilio credit and get started here.

Twilio is a pay-as-you-go service. There are no set-up fees and you can close your account at any time. You can find more details at Twilio Pricing.

Platform

The Twilio platform consists of the Twilio Markup Language (TwiML), a RESTful API and VoIP SDKs for web browsers, Android and iOS. Helper libraries are available in multiple languages. You can find the full list at Twilio Helper Libraries.

TwiML

TwiML is a set of instructions you can use to tell Twilio what to do when you receive an incoming call or SMS. When someone makes a call or sends an SMS to one of your Twilio numbers, Twilio will look up the URL associated with that phone number and make a request to that URL. Twilio will read TwiML instructions at that URL to determine what to do:

  • <Say> - text to speech
  • <Record> - record the call
  • <Play> - play a message for the caller
  • <Gather> - prompt the caller to press digits on their keypad
  • <Sms> - send an SMS

Learn about the other verbs and capabilities from the Twilio Markup Language documentation.

REST API

The Twilio REST API allows you to query metadata about your account, phone numbers, calls, text messages, and recordings. You can also do some fancy things like initiate outbound calls and send text messages.

Since the API is based on REST principles, it's very easy to write and test applications. You can use your browser to access URLs, and you can use pretty much any HTTP client in any programming language to interact with the API. Learn more about the Twilio REST API.

Setting Up

Python We will be using the standard Google App Engine Python Runtime Environment to construct this example. If this is your first time writing Python for Google App Engine, we recommend that you use the Getting Started guide for Python. Follow the tutorial until you have completed the "Hello, World!" guide. After you have a working "Hello, World!" application, you will need to add Twilio's Python library to your application. Do this by doing the following: cd to the directory where your application is stored, this will be the helloworld directory you created if you followed the Getting Started guide. Install virtualenv:$ sudo easy_install pip$ sudo pip install virtualenv Set up a virtual python environment:$ virtualenv --distribute venv Activate virtualenv:$ source venv/bin/activate Use pip to install Twilio's Python library and dependencies:$ pip install twilio Deactivate your virtual environment:$ deactivate Link the Twilio library and its dependencies into your project:$ ln -s venv/lib/python2.7/site-packages/twilio .$ ln -s venv/lib/python2.7/site-packages/httplib2 .$ ln -s venv/lib/python2.7/site-packages/six.py . You have now installed the Twilio library into your Google App Engine project. Java The first thing you will need is a Google App Engine development environment. For Java, the two primary options are using Google's Eclipse plugin, or building via Ant scripts. For the purposes of this tutorial, we will assume you are developing with Eclipse, but in broad strokes the step would be the same for Ant/other environments. Create a new App Engine Java project using either of these methods. If you'd like, it's possible to consume the Twilio REST API directly using App Engine's URL Fetch service, without any setup or external SDKs. If you would rather not add any dependencies to your project and want to use HTTP APIs directly, you can simply refer to the REST API documentation for available endpoints, secured with HTTP Basic Authentication. However, it will probably be easier to use Twilio's helper library (bundled with all dependent Java libraries), which provides a simple object-oriented interface to Twilio's REST API. To use the Twilio helper library in your GAE Java project, you will first need to copy it into your Eclipse project to the war/WEB-INF/lib directory. Once the JAR file has been copied into your project, you will need to put it on your project's build path to get code completion in Eclipse, and remove any compile errors in the IDE. To add a JAR file to your project's build path, right-click on your project folder, and select "Build Path -> Configure Build Path...". On that screen, click the "Add JARs" button, and navigate your project folder to select the jar you already copied into your project. You are now ready to use the Twilio REST API! For more information, see the Javadocs for the Twilio helper library, and this example of sending a text message from a Twilio number in a Java Servlet.

Receiving an Incoming Call

Python Let's walk through creating your first application, titled "Hello Monkey." After completing the instructions in Setting Up, modify helloworld.py to look like this. After updating helloworld.py, follow these directions to deploy your project to App Engine. After you've deployed your project to App Engine you will be able to send a POST request to http://<your app>.appspot.com/twiml, which will return the following text:<?xml version="1.0" encoding="UTF-8"?><Response><Say>Hello Monkey!</Say></Response> Next, copy and paste the http://<your app>.appspot.com/twiml URL into the "Voice" URL box on the Numbers page of your Twilio Account. Now call your Twilio number! You should hear a voice say "Hello Monkey!" in response. When you call, Twilio will fetch your URL, and execute the XML instructions listed above. Then, Twilio will hang up, because there are no more instructions. Java Twilio can send an HTTP request to our App Engine application whenever a call or text message is received. Use this example of how to set up a Java Servlet to respond to incoming voice calls with the message "Hello Monkey!" In order to expose this servlet in our web application, we will need to use this code to add the appropriate mapping in our deployment descriptor (web.xml). Once our servlet is configured, we will need to deploy our application to App Engine. You will then be able to send a POST request to http://<your app>.appspot.com/twiml, which should return the following text:<?xml version="1.0" encoding="UTF-8"?><Response><Say>Hello Monkey!</Say></Response> Copy and paste the URL of your servlet into the "Voice" URL on the Numbers page of your Twilio Account. Now call your Twilio number! You should hear a voice say "Hello Monkey!" in response. When you call, Twilio will fetch your URL, and execute the XML instructions listed above. Then, Twilio will hang up, because there are no more instructions.

Sending an SMS

Python The twilio-python helper library makes it easy to send an outgoing SMS using Twilio. To do this, modify helloworld.py thusly, filling in your "Account SID" and "Auth Token" which are found here: https://www.twilio.com/user/account You will also need to change the from_ and to parameters to use real phone numbers. The from_ number must be a valid Twilio phone number in your account. For this example, use the phone number you called in the example above. The to number can be any outgoing number, your cell phone for example. After deploying the updated code, send the SMS by putting this URL into a web browser: http://<your app>.appspot.com/send_sms Java Sending an outbound text message via our helper library is done using Java classes included in the JAR file. In this example file that uses the helper library, you'll see a simple servlet application, configured to send an SMS text message. Note that you’ll need to fill in your ACCOUNT_SID and AUTH_TOKEN, which are found at https://www.twilio.com/user/account. You will also need to configure the HashMap to contain valid parameters for the REST request. The from and to parameters must use real phone numbers. The from number must be a valid Twilio phone number in your account. The to number can be any outgoing number, your cell phone for example.

Learning More about Twilio

Now that you've learned some of the basics, learn more about additional features and some best practices for building secure and scalable applications:


Viewing all articles
Browse latest Browse all 9433

Trending Articles