Note that there are some explanatory texts on larger screens.

plurals
  1. USphilnash
    primarykey
    data
    text
    <p>Phil is a developer evangelist for <a href="https://www.twilio.com" rel="nofollow noreferrer">Twilio</a> and <a href="https://www.authy.com/" rel="nofollow noreferrer">Authy</a> serving developer communities in London and all over the world. He is a Ruby and JavaScript developer, blogger, speaker and occasionally a brewer. He can be found hanging out at meetups and conferences, playing with new technologies and APIs or writing open source code.</p> <p>You can find Phil elsewhere online in the following places:</p> <ul> <li><a href="https://twitter.com/philnash" rel="nofollow noreferrer">Twitter</a></li> <li><a href="https://github.com/philnash" rel="nofollow noreferrer">GitHub</a></li> <li><a href="https://www.twilio.com/blog/author/phil" rel="nofollow noreferrer">The Twilio Blog</a></li> <li><a href="https://philna.sh/blog/" rel="nofollow noreferrer">Phil's blog</a></li> <li><a href="http://lanyrd.com/profile/philnash/" rel="nofollow noreferrer">Lanyrd</a></li> </ul> <p>Twilio is a communications platform for your applications to connect your users anywhere, on any device in the medium they want. You can try <a href="https://www.twilio.com/try-twilio" rel="nofollow noreferrer">Twilio for free</a>.</p> <p>To send your first SMS on Twilio, just follow these steps:</p> <ol> <li><a href="https://www.twilio.com/try-twilio" rel="nofollow noreferrer">Sign up</a></li> <li>Get yourself a <a href="https://www.twilio.com/user/account/phone-numbers/incoming" rel="nofollow noreferrer">Twilio number</a></li> <li>Find your Account SID and Auth Token in your <a href="https://www.twilio.com/user/account" rel="nofollow noreferrer">account portal</a></li> <li><p>Install the Twilio Ruby gem</p> <pre><code>$ gem install twilio-ruby </code></pre></li> <li><p>Replace the placeholders in this code with your details</p> <pre><code>require "twilio-ruby" client = Twilio::REST::Client.new(ACCOUNT_SID, AUTH_TOKEN) client.messages.create({ to: YOUR_MOBILE_NUMBER, from: YOUR_TWILIO_NUMBER, body: "This is my first SMS message from Twilio!" }) </code></pre></li> <li><p>Celebrate! </p></li> </ol>
    plurals
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload