自动更改 Discord "About me"

Automatic change of Discord "About me"

问题

在 Discord 中,您可能知道,有一个“关于我”部分。

此部分是您可以自己编写的配置文件的描述。

机器人可以有一个“关于我”部分。

我想要的是在 discord.py 中自动编辑这个“关于我”部分; 例如,每隔几个小时,机器人的“关于我”部分就会更改。

我尝试了什么

我搜索了很长时间的一些答案,但没有找到任何相关内容。

我看到您可以使用开发者门户修改“关于我”,但它不是自动的。

我看到有人说“这会在discord.py V2中实现”但是没找到

也许可以通过HTTP请求解决这个问题,但这只是一个假设,我不太擅长这个话题。

显示一些代码:

@bot.event
async def on_ready():
    while 1:
         await change_the_about_me_section(str(random.randint(0,1000))
         time.sleep(3600)
    # change_the_about_me_section isn't a real function
    # I just wanted to show an exemple of what I wanted to do


我认为您无法使用任何代码更改关于我的信息。它必须通过开发人员门户完成。另一方面,您可以 .

有答案。

您可以使用 Python 在几行中完全自动化它。

使用请求库。

您只需首先包含请求:

import requests

然后,请求补丁

requests.patch(url="https://discord.com/api/v9/users/@me", headers= {"authorization": token}, json = {"bio": abio} )
# With token your token, and abio a string like "hello"

然后...就是这样:)

(注意:您也可以使用 accent_color 而不是 bio 的帐户颜色,以及 banner 而不是 bio 的横幅来做到这一点)