Я столкнулся с ошибкой при настройке несогласованного бота с помощью кода и узла Visual Studio.
Это код, который заставляет бота подключиться к сети:
const Discord = require('discord.js');
const bot = new Discord.Client();
bot.login('[the token i recieved for my bot]');
Ошибка, полученная отработает это:
(node:7064) UnhandledPromiseRejectionWarning: Error: unable to verify the first certificate warning.js:18
at TLSSocket.onConnectSecure (_tls_wrap.js:1049:34)
at TLSSocket.emit (events.js:182:13)
at TLSSocket._finishInit (_tls_wrap.js:631:8)
(node:7064) 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: 2) warning.js:18
(node:7064) [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. warning.js:18
Может кто-нибудь помочь мне отладить это или не получить эту ошибку?