如何在Discord中获取特定用户的所有私信?(通过API使用 curl )
答案 0 :(得分:1)
一半可能。
如果您的帐户是BOT帐户,则不能。机器人最多只能看到10个最新的私人频道,这将在下一个网关更新[v7]中被移除。 GitHub Issue
但是,如果您要使用用户帐户进行连接,只需使用相应的令牌向https://discordapp.com/api/users/@me/channels
发送GET请求,您就应该获得一个包含所有开放频道的JSON数组。
那么,回答你的问题:
curl --header "Authorization: yourToken" https://discordapp.com/api/users/@me/channels