Plivo批量短信目的地限制?

时间:2015-07-08 19:18:31

标签: sms plivo

我正在测试Plivo发送批量短信。我使用.NET REST API发送消息。

Plivo's documentation for bulk SMS表示您可以使用分隔符连接数字。这很好用。有谁知道可以包含多少个数字,或者你能告诉我你在一个API请求中成功发送了多少个数字吗?

var plivo = new RestAPI("xxxxxxxxxxxxxxxxxxx", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");

var sendData = new Dictionary<string, string>
                   {
                       { "src", "0000000000" }, 
                       { "dst", "00000000000<00000000000<00000000000<00000000000<00000000000<HOW MANY MORE???" }, 
                       { "text", "test sms from plivo" }
                   };

IRestResponse<MessageResponse> resp = plivo.send_message(sendData);

我无法找到这些信息。

0 个答案:

没有答案