Discord rest API:踢出公会成员
Discord rest API: Kick members from guild
我正在尝试使用 Discord Rest API 和带有 node.js 的“unirest”模块将成员从我的服务器中踢出:
const unirest = require('unirest');
const guildId = "xyz";
const botSecret = "xyz";
const memberId = "xyz"
var request = 'https://discord.com/api/v8//guilds/' + guildId + '/members/' + memberId;
unirest.delete(request).send({"botToken": botSecret}).then((response) => {
console.log(response.body);
}).catch(error =>{
console.log(error);
})
但是,我收到了 401: Unauthorized
回复。我使用的机器人具有管理员角色,因此可以将成员踢出公会。
我认为我在请求中犯了一些错误。
401 表示您没有正确发送身份验证凭据。
如果我们查看 Discord Authentication 的文档,我们可以看到他们希望在授权 header 中使用机器人令牌,而不是像您所做的那样在请求中使用。
我们没有使用基本身份验证,因此我们需要手动编写 header。
unirest.delete(request)
.header('Authorization', 'Bot ' + botSecret)
...
我正在尝试使用 Discord Rest API 和带有 node.js 的“unirest”模块将成员从我的服务器中踢出:
const unirest = require('unirest');
const guildId = "xyz";
const botSecret = "xyz";
const memberId = "xyz"
var request = 'https://discord.com/api/v8//guilds/' + guildId + '/members/' + memberId;
unirest.delete(request).send({"botToken": botSecret}).then((response) => {
console.log(response.body);
}).catch(error =>{
console.log(error);
})
但是,我收到了 401: Unauthorized
回复。我使用的机器人具有管理员角色,因此可以将成员踢出公会。
我认为我在请求中犯了一些错误。
401 表示您没有正确发送身份验证凭据。
如果我们查看 Discord Authentication 的文档,我们可以看到他们希望在授权 header 中使用机器人令牌,而不是像您所做的那样在请求中使用。
我们没有使用基本身份验证,因此我们需要手动编写 header。
unirest.delete(request)
.header('Authorization', 'Bot ' + botSecret)
...