Plivo 批量短信目的地限制?

Plivo Bulk SMS destination limits?

我正在测试 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);

我找不到这个信息。

根据 Plivo 支持:

"There is no limit to the number of destination numbers you can add in the "dst"parameter of the outbound message API. However, the outgoing rate limit is 5 messages per second per account."

不管这个反应如何,我确信理论上仍然存在一些限制。根据我收集到的其他信息,最好使用多个 Plivo 号码(发件人 ID)拆分 API 调用。如果你有合适的长代码数量,你应该不必担心这个限制。

相关信息:

Long code SMS restrictions

How do I send 6000+ messages using a long code?

换句话说,使用多个长代码并相应地拆分您的目标号码以并行发送。

编辑* 收到另一个似乎更准确的回复

"You can add upto 250 numbers per API request. That should be the ideal limit on the destination parameter."

对于想知道现在(2021 年)实际群发消息限制是多少的人来说,每个 API 呼叫 1,000 个号码

值得庆幸的是,现在群发消息部分的 Plivo's API Docs page 中明确说明了这一点:

The Message API supports up to 1,000 unique destination numbers.