Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

discord.js - guildmemberupdate event only occurs when bot gets updated

This only picks up when the actual bot gets updated and not when other users update

client.on('guildMemberUpdate' ,(oldMember,newMember) => {
    console.log(oldMember['_roles'])
    console.log(newMember['_roles'])
});
question from:https://stackoverflow.com/questions/65945649/guildmemberupdate-event-only-occurs-when-bot-gets-updated

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

https://discordjs.guide/popular-topics/intents.html

Read through this page - You need to use intents when connecting to the gateway

so

const client = new Discord.Client({ ws: { intents: Discord.Intents.ALL } })

And enable intents on your application's Page (https://i.imgur.com/XtKjFyY.png) enable both.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...