【发布时间】:2013-07-31 22:23:13
【问题描述】:
我设置了一个页面“example.com/firstsms”以通过 Twilio 发送 SMS 并重定向到主页。如果我随后使用电话回复我想回复确认的消息。到目前为止,什么都没有发生。
在 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")
绞尽脑汁!谢谢
【问题讨论】: