Botkit is designed to ease the process of designing and running useful, creative bots that live inside Slack, Facebook Messenger, Twilio IP Messaging, and other messaging platforms like Twilio's Programmable SMS.
Botkit features a comprehensive set of tools to deal with Twilio's Programmable SMS API, and allows developers to build interactive bots and applications that send and receive messages just like real humans. Twilio SMS bots receive and send messages through a regular phone number.
This document covers the Twilio Programmable SMS API implementation details only. Start here if you want to learn about how to develop with Botkit.
-
Install Botkit more info here
-
Register a developer account with Twilio. Once you've got it, head to the Get Started with SMS page in your Twilio Console.
After completing the tutorial above you should have all three values to get your bot running: A Twilio Account SID, a Twilio Auth Token, and a Twilio Number.
Twilio Account SID and Auth Token
These values are available on your Twilio Account Settings page on the Twilio Console. Copy both the SID and token values (located under API Credentials)
Twilio Number
You should have purchased a Twilio Number. You will send/receive messages using this phone number. Example:
+19098765432
-
Configure your Twilio Number. Head to the Phone Numbers in your Twilio Console and select the phone number you will use for your SMS bot.
Under the Messaging section, select "Webhooks/TwiML" as your Configure with preference. Two more fields will pop up: A message comes in, and Primary handler fails.
The first one is the type of handler you will use to respond to Twilio webhooks. Select "Webhook" and input the URI of your endpoint (e.g.
https://mysmsbot.localtunnel.me/sms/receive
) and selectHTTP POST
as your handling method.Twilio will send
POST
request to this address every time a user sends an SMS to your Twilio Number.By default Botkit will serve content from
https://YOURSERVER/sms/receive
. If you are not running your bot on a public, SSL-enabled internet address, you can use a tool like ngrok.io or localtunnel.me to expose your local development enviroment to the outside world for the purposes of testing your SMS bot.The second preference ("Primary handler fails") is your backup plan. The URI Twilio should
POST
to in case your primary handler is unavailable. You can leave this field in blank for now but keep in mind this is useful for error handling (e.g. to notify users that your bot is unavailable). -
Run the example Twilio SMS bot included in Botkit's repository (
twilio_sms_bot.js
). Copy and paste the example bot's code into a new JavaScript file (e.g.twilio_sms_bot.js
) in your current working directory and run the following command on your terminal:$ TWILIO_ACCOUNT_SID=<YOUR_ACCOUNT_SID> TWILIO_AUTH_TOKEN=<YOUR_AUTH_TOKEN> TWILIO_NUMBER=<YOUR_NUMBER> node twilio_sms_bot.js
Note: Remember to run localtunnel or ngrok to expose your local development environment to the outside world. For example, in localtunnel run
lt --port 5000 --subdomain mysmsbot
(See note on step 4) -
Your bot should be online! Grab your phone and text
hi
to your Twilio Number and you will get aHello.
message back!Try the following messages:
Hi
,Call me bob
,what's my name?
Note: This document assumes that you are familiarized with Botkit and Twilio's Programmable SMS API
To connect your bot to Twilio you must point a Messaging webhook to http://your_host/sms/receive, after doing so, every Twilio message will be sent to that address.
Then you need to write your bot. First, create a TwilioSMSBot instance and pass an object with your configuration properties:
account_sid
: found in your Twilio Console Dashboardauth_token
: found in your Twilio Console Dashboardtwilio_number
: your app's phone number, found in your Phone Numbers Dashboard The phone number format must be:+15551235555
const Botkit = require('botkit')
const controller = Botkit.twiliosmsbot({
account_sid: process.env.TWILIO_ACCOUNT_SID,
auth_token: process.env.TWILIO_AUTH_TOKEN,
twilio_number: process.env.TWILIO_NUMBER
})
spawn()
your bot instance:
let bot = controller.spawn({})
Then you need to set up your Web server and create the webhook endpoints so your app can receive Twilio's messages:
controller.setupWebserver(process.env.PORT, function (err, webserver) {
controller.createWebhookEndpoints(controller.webserver, bot, function () {
console.log('TwilioSMSBot is online!')
})
})
And finally, you can setup listeners for specific messages, like you would in any other botkit
bot:
controller.hears(['hi', 'hello'], 'message_received', (bot, message) => {
bot.startConversation(message, (err, convo) => {
convo.say('Hi, I am Oliver, an SMS bot! :D')
convo.ask('What is your name?', (res, convo) => {
convo.say(`Nice to meet you, ${res.text}!`)
convo.next()
})
})
})
controller.hears('.*', 'message_received', (bot, message) => {
bot.reply(message, 'huh?')
})
See full example in the examples
directory of this repo.
To send media attachments, pass a mediaUrl
property to any of Botkit's outgoing messages functions (reply
, say
, ask
, etc.) with an optional text
property for text that goes along with your attachment.
/*
Sending an attachment
*/
bot.reply(message, {
text: 'Optional text to go with attachment',
mediaUrl: 'https://i.imgur.com/9n3qoKx.png'
})
Note: your Twilio number as well as the recipient's phone must support MMS for media attachments to work
For more details on outgoing media attachments and a full list of accepted MIME types, go to Twilio's docs on media attachment.
- Get Started
- Botkit Studio API
- Function index
- Extending Botkit with Plugins and Middleware
- Storing Information
- Logging
- Platforms
- Contributing to Botkit