我已经下载了balebot npm,并使用此代码向其发送200条文本消息给客户端(两个都可以用于一组客户端)。
有任何想法吗?

const SDK = require("balebot");
const BaleBot = SDK.BaleBot;
const FileMessage = SDK.FileMessage;
const TextMessage = SDK.TextMessage;

let bot = new BaleBot('My token');

var file = new TextMessage("its a text message")

for (var i = 0; i < 200; i++) {
    bot.send(file, new SDK.User(201707397, "-9120776543768627721")).then((res) => {
        console.log(res)
    }).catch((err) => {
        console.log(err)
    });
}


但是我对此错误感到困惑。

BotErrorResponse {
  _id: '1001',
  _body: { code: 403, tag: 'HIT_LIMIT', data: {}, retryIn: null },
  code: 403,
  tag: 'HIT_LIMIT',
  data: {},
  retryIn: null }

最佳答案

这是在讨论使用漫游器向客户端发送消息的局限性。您应该使用一种方法来延迟发送它们。
了解更多:https://developers.bale.ai/

09-17 19:40