Inbound SMS in Rails with Twilio Discussion
Thanks Chris. Ended up using this to programatically send a text message after a user completes an order, and allow that user to ask questions, creating a conversation, where we can respond from the website.
Can you use actioncable for when a response comes in? If so, would you be able to post a simple gist snippet for it?? Thanks
Anyone know why ActionCable throttles the memory of my ubuntu 16.04 server. I'm using phusion passenger and nginx. I saw some instructions for setting up actioncable, but I didn't know it would be mandatory. But yes, I would like to see the gist you have for setting up action cable for incoming responses. Thanks.
Hey Chris, when I do a User.find_by(phone: params[:From])
, I was hoping that it would use a Phonelib
object comparison, but it doesn't, so if my user saved their phone number as 3033033003, it is comparing to a text message coming in (twilio_controller.rb
) coming from a number with +1
in front. What is the a clean and performent way to make this query work?