Discord REST API:获取多个用户
Discord REST API: get multiple users
我正在尝试通过将 Discord REST API 与 Node.js 和 Unirest 模块结合使用来通过单个请求查询多个用户。
unirest.get(`https://discord.com/api/v8/users/{user.id}`).headers({ Authorization: `Bot${botSecret}`})
.then(response =>{
console.log(response);
})
.catch(error =>{
console.error(error);
})
为了获得多个用户,我通过以下方式在 user.id
字段中传递一个 ID 列表:
"id1,id2,id3"
https://discord.com/api/v8/users/id1,id2,id3
但是我得到了 'Bad Request' 回复。
使用单个请求查询多个用户的正确方法是什么?
我快速浏览了一下 Discord API 和 discord.js 代码,它们似乎是单独完成的。
Discord 的 API 似乎不支持一次获取多个用户 & discord.js 获取一组用户,并遍历他们同时检查缓存,确保他们不违反速率限制,等等
我正在尝试通过将 Discord REST API 与 Node.js 和 Unirest 模块结合使用来通过单个请求查询多个用户。
unirest.get(`https://discord.com/api/v8/users/{user.id}`).headers({ Authorization: `Bot${botSecret}`})
.then(response =>{
console.log(response);
})
.catch(error =>{
console.error(error);
})
为了获得多个用户,我通过以下方式在 user.id
字段中传递一个 ID 列表:
"id1,id2,id3"
https://discord.com/api/v8/users/id1,id2,id3
但是我得到了 'Bad Request' 回复。
使用单个请求查询多个用户的正确方法是什么?
我快速浏览了一下 Discord API 和 discord.js 代码,它们似乎是单独完成的。
Discord 的 API 似乎不支持一次获取多个用户 & discord.js 获取一组用户,并遍历他们同时检查缓存,确保他们不违反速率限制,等等