Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Create an SMS Conversation in Ruby


How do you turn a handful of isolated messages to and from the same party into a true conversation? You need some way to remember state between each message that is exchanged. This is because SMS is a stateless protocol. Building traditional web applications has this same hurdle, as HTTP is also a stateless protocol. This problem has been solved for web applications through the use of HTTP cookies and, rather than reinvent the wheel, the Twilio Messaging API uses the same solution.

This guide will show you how Programmable Messaging(link takes you to an external page) makes this easy for you and your Ruby application. The code snippets in this guide are written using Ruby version 2.0.0 or higher, and make use of the following modules:

If you haven't written your own SMS webhooks with Ruby before, you may want to first check out our guide, Receive and Reply to SMS and MMS Messages in Ruby. Ready to go? Let's get started!

(information)

Info

Twilio Conversations, a more recent product offering, is an omni-channel messaging platform that allows you to build engaging conversational, two-way messaging experiences. Be sure to check out our Conversations product to see if it's a better fit for your needs.


Using HTTP Cookies with Webhooks

using-http-cookies-with-webhooks page anchor

In web apps, you write a cookie to keep "statefulness" between separate requests from the same browser. Similarly, SMS messages are independent communications between two parties, so Twilio allows you to tie them together as a logical session via cookies. This means you can use server-side sessions to keep track of application state between requests. How cool is that? Twilio will expire the cookies for that conversation after four hours of inactivity, as if the user "closed the browser."

Storing Conversation Data

storing-conversation-data page anchor

The cookies let you share state across multiple messages allowing you to treat separate messages as a conversation, and store data about the conversation in the cookies for future reference.

You can store the data directly in a cookie, or you can use a session state management framework.


Track SMS Conversations using a Session

track-sms-conversations-using-a-session page anchor

Let's try using session counters to see if a particular user has messaged us before. If they're a new sender, we'll thank them for the new message. If they've sent us messages before, we'll specify how many messages we've gotten from them.

Tracking SMS Conversations using Cookies

tracking-sms-conversations-using-cookies page anchor
Ruby

_29
require 'rubygems'
_29
require 'twilio-ruby'
_29
require 'sinatra'
_29
_29
use Rack::Session::Cookie, key: 'rack.session',
_29
path: '/',
_29
secret: 'can-be-anything-but-keep-a-secret'
_29
_29
# Return the session number for each sms received.
_29
post '/sms' do
_29
session['counter'] ||= 0
_29
sms_count = session['counter']
_29
_29
message = if sms_count.zero?
_29
'Hello, thanks for the new message.'
_29
else
_29
"Hello, thanks for message number #{sms_count + 1}"
_29
end
_29
_29
twiml = Twilio::TwiML::MessagingResponse.new do |r|
_29
r.message(body: message)
_29
end
_29
_29
session['counter'] += 1
_29
_29
content_type 'text/xml'
_29
_29
twiml.to_s
_29
end


Rate this page: