繁体   English   中英

Node.js Telegram bot 无法将用户踢出超级组

[英]Node.js Telegram bot can't kick user from supergroup

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

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. 

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM