0

我正在尝试创建一个逻辑系统来从私人超级组中踢出用户名。但是,当函数运行时,我会返回:

Api error: Body: {
  ok: false,
  error_code: 400,
  description: 'Bad Request: wrong user_id specified'
}


(node:11272) UnhandledPromiseRejectionWarning: #<TelegramApiError>
(node:11272) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:11272) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. 

我在句柄内调用函数:$.kickChatMember(groupid , userid); 谢谢!

4

1 回答 1

1

解决了!我的代码错了。当我们使用范围时,它会自动发送聊天的 id,因此,我们只需发送 userid 作为参数:$.kickChatMember(userid);

于 2019-11-29T14:34:36.163 回答