I set up a page "example.com/firstsms" to send a SMS through Twilio and redirect to the homepage. If I then use the phone to respond to the message I want to reply with a confirmation. As of now, nothing happens.
In urls.py I have:
(r'^hellomonkey/$', 'crusher.views.HelloMonkey'),
In views.py I tried to adapt their Flask example:
def HelloMonkey(request):
"""Respond to incoming calls with a simple text message."""
resp = twilio.twiml.Response()
resp.sms("Hello, Mobile Monkey")
return HttpResponseRedirect(str(resp), content_type="text/plain")
Racking my brain! Thanks