Reputation: 956
1.) User sends a text message to a designated Twilio phone number 2.) Application receives this message and parses it for actionable data 3.) Application replies to sender with a text message delivering the requested information
How the heck do I do this with rails?!
Upvotes: 4
Views: 4311
Reputation: 269
Assuming your business logic doesn't take that long to execute, it's pretty simple to process a text and send a response. Here are the core steps:
Here's a link to a simple app that does just this:
https://github.com/crabasa/twilio-rails-demo
Update: I've written two detailed blog posts on integration Twilio into a Rails 4.x app: Part 1 and Part 2.
Upvotes: 12