我是使用 SMPP 的新手。我不太确定传入的消息是否有效。我正在使用 smpplib 在 Python 2.7 中实现这一点。我能够连接到 SMPP 服务并使用 bind_transmitter 发送 SMS。
在示例中,有一个函数调用 recv_handler,但是我没有看到它在任何地方调用。这是功能:
def recv_handler(self, **args):
print 'Message received:', args
任何帮助都会很棒。谢谢你。
我是使用 SMPP 的新手。我不太确定传入的消息是否有效。我正在使用 smpplib 在 Python 2.7 中实现这一点。我能够连接到 SMPP 服务并使用 bind_transmitter 发送 SMS。
在示例中,有一个函数调用 recv_handler,但是我没有看到它在任何地方调用。这是功能:
def recv_handler(self, **args):
print 'Message received:', args
任何帮助都会很棒。谢谢你。
来自 Twilio 的梅根在这里。
我知道这个问题有点老了。但是对于登陆这里寻找如何处理传入短信的人来说,您可以在这里快速开始:
from flask import Flask, request, redirect
import twilio.twiml
app = Flask(__name__)
@app.route("/", methods=['GET', 'POST'])
def hello_monkey():
resp = twilio.twiml.Response()
resp.message("Hello, Mobile Monkey")
return str(resp)
if __name__ == "__main__":
app.run(debug=True)
希望这可以帮助!