Bonjour je cherche à faire un bot en javascript malheureusement je rencontre une erreur.
Voici le code :
const Discord = require('discord.js');
const client = new Discord.Client({
intents: [
Discord.Intents.FLAGS.GUILDS,
Discord.Intents.FLAGS.GUILD_MESSAGES,
Discord.Intents.FLAGS.DIRECT_MESSAGES
]
});
const PHIL_USER_ID = 'PHIL_ID';
const SYTRIX_USER_ID = 'SYTRIX_ID';
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('messageCreate', async (message) => {
if (message.channel.type === 'DM' && message.author.id === PHIL_USER_ID) {
const sytrix = await client.users.fetch(SYTRIX_USER_ID);
sytrix.send(`Phil received a DM: "${message.content}"`);
}
});
client.login('TOKEN');
Voici ce que je fais pour exécuter le code :
C:UsersphiliDocumentsPyhtonBOT>bot.js
Voici ce que cela me retourne :
C:UsersphiliDocumentsPyhtonBOT> [13224:0911/231258.263:ERROR:network_service_instance_impl.cc(692)] Failed opening SSL key log file: C:sslkeys.txt
==============================================================================
For non-French people :
Hello I’m trying to make a bot in javascript unfortunately I’m encountering an error.
Here is the code:
const Discord = require('discord.js');
const client = new Discord.Client({
intents: [
Discord.Intents.FLAGS.GUILDS,
Discord.Intents.FLAGS.GUILD_MESSAGES,
Discord.Intents.FLAGS.DIRECT_MESSAGES
]
});
const PHIL_USER_ID = 'PHIL_ID';
const SYTRIX_USER_ID = 'SYTRIX_ID';
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('messageCreate', async (message) => {
if (message.channel.type === 'DM' && message.author.id === PHIL_USER_ID) {
const sytrix = await client.users.fetch(SYTRIX_USER_ID);
sytrix.send(`Phil received a DM: "${message.content}"`);
}
});
client.login('TOKEN');
Here’s what I do to execute the code:
C:UsersphiliDocumentsPyhtonBOT>bot.js
Here’s what it means to me:
C:UsersphiliDocumentsPyhtonBOT> [13224:0911/231258.263:ERROR:network_service_instance_impl.cc(692)] Failed opening SSL key log file: C:sslkeys.txt
Ce que j’ai déjà tester
J’ai chercher sur google des solutions,
La première c’est celle de supprimer le fichier sslkeys.txt mais celui ci à été recréer après un redémarrage. Donc cela n’a pas fonctionné….
J’ai il y a longtemps installer wireshark pour les études que j’ai désinstallé. J’ai fais des recherches sur mon erreur et j’ai donc tester d’installer et de désinstaller encore une fois wireshark pour régler le problème. Seulement cela n’a pas fonctionné.
J’ai avec de plus amples recherches trouvé que parfois la désinstallation se passe pas bien mais que le programme passe par dessus. J’ai donc regardé du côté du registre et vu que j’ai 2 clés wireshark qui sont resté dans mon registre : wireshark-capture-file_.cap et wireshark-capture-file_.erf
Je ne suis pas trop alaise avec la supression de clé de registre est ce que si je supprime cela n’affecte pas mon PC ?
==============================================================================
For non-French people :
I searched on google for solutions, the first one was to delete the sslkeys.txt file but it was recreated after a reboot. So it didn’t work….
A long time ago I installed wireshark for studies, which I uninstalled. I researched my error and tried to install and uninstall wireshark again to solve the problem. Only it didn’t work.
On further investigation, I found that sometimes uninstallation doesn’t go smoothly, but the program overrides it. So I looked at the registry and saw that I have 2 wireshark keys that remain in my registry: wireshark-capture-file_.cap and wireshark-capture-file_.erf
I’m not too comfortable with deleting registry keys, but if I delete them won’t that affect my PC?
Ce que je cherche :
Je voudrais comprendre d’où vient cette erreur et surtout comment ne plus rencontrer cette erreur.
What I’m looking for:
I’d like to understand where this error comes from and, above all, how to avoid encountering it again.
Merci d’avoir lu ma question si vous avez besoin de plus d’informations je suis là !
Thank you for reading my question if you need more information I’m here!