Reputation: 10061
Is there any way to use text messages to CRUD data in a Rails app? For instance, a user would send a text message to a specific number and the Rails app could use that data in any way. Just wondering if there's a solution out there.
Upvotes: 1
Views: 609
Reputation: 646
my name is Jarod and I work at Twilio.com. It would be very easy to build a Rails app that handles incoming SMS using the Twilio API. Here is a high-level overview of how it would work:
Note: When Twilio makes the request to your Rails app it will pass helpful parameters with the request including:
Here is a simple Rails app that does just that.
Hope this helps!
Upvotes: 0
Reputation: 38012
Lots of web services exist to do this. Try out http://twilio.com/.
Upvotes: 1