我設置了一個頁面「example.com/firstsms」通過Twilio發送短信並重定向到主頁。如果我然後使用手機來回復我要回復的確認消息。截至目前,沒有任何反應。如何使用Django/Twilio響應短信
在urls.py我:
(r'^hellomonkey/$', 'crusher.views.HelloMonkey'),
在views.py我試圖調整其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")
貨架我的大腦!謝謝
謝謝!我試圖創建條件響應,並開始另一個問題[這裏](http://stackoverflow.com/questions/17986721/conditional-sms-response-with-django-twilio) – theptrk