Appcelerator Developer Blog

Forging Titanium Episode 7: Titanium and Twilio for Cloud Communications

Editor’s note: This and future episodes of Forging Titanium are available here.

In this week’s episode, we’ll be taking a look at Twilio, a cloud-based service for adding telephony features to applications through a RESTful web service API. Using Twilio, developers can send and receive phone calls and SMS text messages, enabling the creation of interfaces that pass beyond the reach of smart phones.

Learn how to send and receive phone calls and text messages in your mobile applications in this week’s episode of Forging Titanium.

Episode Resources:



Tags: ,

3 Responses to “Forging Titanium Episode 7: Titanium and Twilio for Cloud Communications”

  1. iga says:

    I want to build this project, but I could not .

    When I builded this project,this error occurred.

    STACK REDACTED

  2. Kevin Whinnery says:

    @iga

    First I would try cleaning your project in Studio and rebuilding. If you continue to have troubles, mail a Q&A link to community at appcelerator dot com and we can take a look, as we don’t troubleshoot in the blog comments. Thanks!

  3. the crashing I experienced was cause by using `set` as a function name which requires doesn’t like.

    change
    ~~~~
    require(‘lib/credentials’).set(this);
    ~~~~
    to
    ~~~~
    require(‘lib/credentials’).load(this);
    ~~~~
    and then change the function name inside of `credentials.js` from `set` to `load`