首页 > 解决方案 > 无法使用 balebot npm 发送短信

问题描述

我已经下载了 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 }

标签: node.jswebsocketbotsbale-messenger

解决方案


这是关于使用机器人向客户端发送消息的限制。您应该使用一种方法延迟发送它们。了解更多:https ://developers.bale.ai/


推荐阅读