# twilio-ruby [![Build Status](http://img.shields.io/travis/twilio/twilio-ruby.svg)][travis] [![Gem Version](http://img.shields.io/gem/v/twilio-ruby.svg)](https://rubygems.org/gems/twilio-ruby) A module for using the Twilio REST API and generating valid [TwiML](http://www.twilio.com/docs/api/twiml/ "TwiML - Twilio Markup Language"). [Click here to read the full documentation.][documentation] ## Recent Update As of release 5.1.0, Beta and Developer Preview products are now exposed via the main `twilio-ruby` artifact. Releases of the `alpha` branch have been discontinued. If you were using the `alpha` release line, you should be able to switch back to the normal release line without issue. If you were using the normal release line, you should now see several new product lines that were historically hidden from you due to their Beta or Developer Preview status. Such products are explicitly documented as Beta/Developer Preview both in the Twilio docs and console, as well as through in-line code documentation here in the library. ## Installation To install using [Bundler][bundler] grab the latest stable version: ```ruby gem 'twilio-ruby', '~> 5.25.4' ``` To manually install `twilio-ruby` via [Rubygems][rubygems] simply gem install: ```bash gem install twilio-ruby -v 5.25.4 ``` To build and install the development branch yourself from the latest source: ```bash git clone git@github.com:twilio/twilio-ruby.git cd twilio-ruby make install ``` ### Migration from 4.x [Upgrade Guide][upgrade] ## Documentation [Here][documentation] ## Docker Image The `Dockerfile` present in this repository and its respective `twilio/twilio-ruby` Docker image are currently used by Twilio for testing purposes only. ## Getting help If you need help installing or using the library, please check the [Twilio Support Help Center](https://support.twilio.com) first, and [file a support ticket](https://twilio.com/help/contact) if you don't find an answer to your question. If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo! ## Getting Started ### Setup Work ```ruby require 'twilio-ruby' # put your own credentials here account_sid = 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' auth_token = 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy' # set up a client to talk to the Twilio REST API @client = Twilio::REST::Client.new account_sid, auth_token ``` ### Make a Call ```ruby @client.api.account.calls.create( from: '+14159341234', to: '+16105557069', url: 'http://example.com' ) ``` ### Send an SMS ```ruby @client.api.account.messages.create( from: '+14159341234', to: '+16105557069', body: 'Hey there!' ) ``` ### List your SMS Messages ```ruby @client.api.account.messages.list ``` ### Fetch a single SMS message by Sid ```ruby # put the message sid you want to retrieve here: message_sid = 'SMxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' @client.api.account.messages(message_sid).fetch ``` ### Customizing your HTTP Client twilio-ruby uses [Faraday][faraday] to make HTTP requests. You can tell Twilio::REST::Client to use any of the Faraday adapters like so: ```ruby @client.http_client.adapter = :typhoeus ``` ## Getting Started With Client Capability Tokens If you just need to generate a Capability Token for use with Twilio Client, you can do this: ```ruby require 'twilio-ruby' # put your own account credentials here: account_sid = 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' auth_token = 'yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy' # set up capability = Twilio::JWT::ClientCapability.new account_sid, auth_token # allow outgoing calls to an application outgoing_scope = Twilio::JWT::ClientCapability::OutgoingClientScope.new 'AP11111111111111111111111111111111' capability.add_scope(outgoing_scope) # allow incoming calls to 'andrew' incoming_scope = Twilio::JWT::ClientCapability::IncomingClientScope.new 'andrew' capability.add_scope(incoming_scope) # generate the token string @token = capability.to_s ``` There is a slightly more detailed document in the [Capability][capability] section of the wiki. ## Getting Started With TwiML You can construct a TwiML response like this: ```ruby require 'twilio-ruby' response = Twilio::TwiML::VoiceResponse.new do |r| r.say(message: 'hello there', voice: 'alice') r.dial(caller_id: '+14159992222') do |d| d.client 'jenny' end end # print the result puts response.to_s ``` This will print the following (except for the whitespace): ```xml hello there jenny ``` ## Supported Ruby Versions This library supports and is [tested against][travis] the following Ruby implementations: - Ruby 2.5.0 - Ruby 2.4.0 - Ruby 2.3.0 - Ruby 2.2.0 [capability]: https://github.com/twilio/twilio-ruby/wiki/JWT-Tokens [examples]: https://github.com/twilio/twilio-ruby/blob/master/examples [documentation]: http://twilio.github.io/twilio-ruby [wiki]: https://github.com/twilio/twilio-ruby/wiki [bundler]: http://bundler.io [rubygems]: http://rubygems.org [gem]: https://rubygems.org/gems/twilio [travis]: http://travis-ci.org/twilio/twilio-ruby [upgrade]: https://github.com/twilio/twilio-ruby/wiki/Ruby-Version-5.x-Upgrade-Guide [issues]: https://github.com/twilio/twilio-ruby/issues [faraday]: https://github.com/lostisland/faraday