Discord bot看登录用户所在的服务器

I'm trying to make a Discord server list, but I have no idea how to see which servers the users are on. disboard.org i will give an example sample: enter image description here

如果您从某个地方找到了 Discord 服务器列表基础架构,或者您有指向该基础架构的链接,可以将其发送给我吗?

2

Discord 的OAuth2 API包含guilds范围,允许应用程序访问授权用户的公会。使用 OAuth2 进行身份验证后,您可以GET /users/@me/guilds检索用户所在的公会列表。这将返回包含以下数据的部分公会对象:

{
  "id": string,
  "name": string,
  "icon": string,
  "owner": boolean,
  "permissions": string,
  "features": Array<string>
}

本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处

(183)
通过贝宝检索用户的信用卡详细信息(paypal credit card numbers)
上一篇
Dockerfile中的 VOLUME的目的是什么
下一篇

相关推荐

发表评论

登录 后才能评论

评论列表(70条)