我正在尝试使用Twilio进行其他操作,但是可以使用Nexmo,Tropo或Plivo寻求其他解决方案。

在这种情况下,我正在从服务器向一堆客户端发送SMS文本。我可以找回状态:例如排队,发送,发送或失败。这是Twilio关于SMS发送状态的说法:

"Sent" indicates that your message was successfully sent into the SMS
network for delivery. However Twilio does not receive confirmation from
the destination carrier that the message was received, and this is not
a guarantee that the message has reached the intended device.
(https://www.twilio.com/help/faq/sms/what-do-the-sms-statuses-mean)

所以,我的问题是:Plivo,Tropo或Nexmo(或我错过的任何其他服务)是否会那样做?我的意思是,知道SMS是直接由客户或客户的运营商接收的,这一点非常重要。

PS。我什至不确定是否可以

任何帮助或建议,将不胜感激。

最佳答案

Nexmo肯定有可能-由于其他answercomment状态,Twilio&Tropo则不可能。 Plivo的docs look like their delivery receipts与Nexmo的相似。

如果承运商支持,Nexmo将发送收据。在美国不是,但在国际上经常得到支持。在这种情况下,Nexmo将为您的应用程序提供callback with a delivery receipt。您还可以使用消息ID到query for the message status

该截屏视频显示checking the DLR from the dashboard,它实际上只是API之上的UI。

Kevin makes the point表示如果通过多个提供商退回邮件可能会很困难-Nexmo的重点之一就是getting as direct a connection as possible

[免责声明:我偶尔会为Nexmo进行开发人员宣传。]

09-26 01:57