java用于kannel交付报告
我已经成功编写了一个用Java通过kannel发送短信的类。但我在编写交付报告类时遇到了很大的问题。知道怎么写吗?
I have successfully written a class for sending SMS over kannel in Java. But I have big problems to write a delivery report class. Any idea how to write it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Kannel 将按照您在短信提交中的
dlr-url
参数中指定的 URL 向您发送送达报告,例如example.com/DLR?outgoing_id=123&status=%d
。你用什么语言编写它并不重要。您所需要的只是一个通过 HTTP GET 接受特定参数的 HTTP 页面。 Kannel 将添加传递状态、时间等参数,您将通过上面的 ID 将它们链接到您的 SMS 提交。
此讨论有一个明显的例子。
Kannel will send you back the delivery reports in the url you specify in the
dlr-url
parameter in the SMS submission, for exampleexample.com/DLR?outgoing_id=123&status=%d
.What language you write it in is irrelevant. All you need is an HTTP page that accepts specific parameters via HTTP GET. Kannel will add parameters for the delivery status, time, et al, and you will link them to your SMS submission via its id as above.
This discussion has a clear example.