JavaScript
x
7
1
function getMembers(serverId) {
2
const server = client.guilds.cache.get(serverId)
3
server.members.fetch({limit: 1})
4
.then(console.log)
5
.catch(console.error)
6
}
7
This function never returns anything. Can you help me?
Advertisement
Answer
As Cameron said in the comments you need to enable the GUILD_MEMBERS and the GUILDS intent from your Client constructer by listing it in the intents property of the Client Options like so
JavaScript
1
7
1
const client = new Client({
2
intents: [
3
"GUILDS",
4
"GUILD_MEMBERS",
5
],
6
});
7