人到中年有點甜
2023-07-20 16:58:49
我正在制作一個可以通過請求更改網(wǎng)址代碼的機器人,但我嘗試過一些方法,它只返回當前的邀請代碼我的代碼: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有人可以幫我嗎?
1 回答

呼如林
TA貢獻1798條經(jīng)驗 獲得超3個贊
Autorization 標頭上的前綴Bot僅適用于機器人,如果您想使用用戶令牌,則需要使用Bearer前綴而不是機器人的前綴。
fetch('https://www.discord.com/api/v6/guilds/762359120031907871/vanity-url', {
method: 'POST',
headers: { 'Authorization': `Bearer ${client.token}`, 'Content-Type': 'application/json'},
payload: JSON.stringify({
"code":"test458"
})
})
.then(res => res.json())
.then(json => { console.log(json)});
添加回答
舉報
0/150
提交
取消