我正在尝试验证有关我的机器人的信息并将其发布到列出它们的服务器上。 api指出,我必须先通过为我的机器人发送身份验证令牌来对其服务器进行身份验证。我设法使它起作用。但是,当我随后尝试将信息发布到指定的URL时,我什至没有收到响应代码。
async def apiPost():
servers = list(client.servers)
numServers = len(client.servers)
URL = "https://www.discordbotlist.com"
URL2 = "https://www.discordbotlist.com/api/bots/:botIDOmitted/stats"
servdata = {'guilds':int(numServers)}
authorization = {'Authorization':'Bot realTokenOmitted'}
r=requests.get(URL,headers=authorization)
print(r)
r=requests.post(URL2, data=servdata)
print(r)
我现在不确定我在做什么错。