我正在制作一个可以通过请求更改网址代码的机器人,但我尝试过一些方法,它只返回当前的邀请代码
我的代码:
fetch('https://www.discord.com/api/v6/guilds/762359120031907871/vanity-url', {
method: 'POST',
headers: { 'Authorization': 'Bot ' + client.token, 'Content-Type': 'application/json'},
payload: JSON.stringify({
"code":"test458"
})
})
.then(res => res.json())
.then(json => { console.log(json)})
它正在回归
{ code: 'cherrys', uses: 0 }
我只想更改代码,但不知道如何做到这一点,当我尝试使用用户令牌时,它说
401: Unauthorized
有人可以帮我吗?
呼如林
相关分类