I'm trying to get basic SMS responses working on my server. I have a route set up at http://feedingforward-staging.herokuapp.com/api/sms that correctly produces the following TwiML when you make a GET request in the browser:
<?xml version="1.0" encoding="UTF-8"?><Response><Sms>Hey Monkey. Thanks for the message!</Sms></Response>
I've configured my Twilio number to point to this URL, and when I send a text to that number, the server does get the request and processes it with code 200 (OK). However, Twilio does not use the TwiML to send a response text.
Any idea why?