0
curl -X "POST" "https://rest.nexmo.com/sms/json" \
 -d "from=testsms" \
 -d "text=hello" \
 -d "to=44xxxxxxxxxx” \
 -d "api_key=xxxxxxxx" \
 -d "api_secret=xxxxxxxxxxxxxxxx"

我想发送多条短信,所以基本上是批量短信,但它不允许在 -d "to=44xxxxxxxxxx" \ 位中使用超过 1 个号码,所以有人可以帮我解决这个问题。我会放置一些链接来看看发生了什么

https://help.nexmo.com/hc/en-us/articles/205065817-How-to-Send-Multiple-SMS-in-a-Single-API-Request

请使用该链接来指导答案。非常感谢

4

1 回答 1

2

每个 API 调用只能发送一条短信。这篇文章描述了如何在发送之间保持连接打开,但 API 也有速率限制,所以这可能无济于事。这不是您要寻找的答案,但您需要自己处理队列或其他东西,并将消息逐个添加到 API 中。

于 2020-04-20T10:46:12.907 回答