如何在 Discord 上的 mass dm selfbot 中修复此错误

how do I fix this error in my mass dm selfbot on discord

提问人:erichlol 提问时间:7/1/2023 更新时间:7/1/2023 访问量:88

问:

我是 python 的新手,我试图制作一个 python 自我机器人来向我所有的朋友发送消息,但即使我尝试修复它,它也会不断抛出错误。

我的代码是

import discord
import os
import requests

token = input("Enter token: ")
head = {'Authorization': str(token)}
src = requests.get('https://discordapp.com/api/v6/users/@me', headers=head)

if src.status_code == 401:
print("Invalid token.")
exit()
elif src.status_code == 200:
    print("Token accepted.")
else:
    print("Internal error.")
    input()
    exit()

T = input("Enter message: ")
if T == "text":
    exit(0)

intents = discord.Intents.default()
client = discord.Client(intents=intents)

@client.event
async def on_connect():
    for user in client.user.friends:
        try:
            await user.send(T)
            print("Sent message:", user.name)
        except:
            print("Failed to send message:", user.name)

client.run(token)
python discord discord.py self

评论

1赞 Ali Massoud 7/1/2023
错误是什么?你的问题到底是什么?
1赞 boez 7/4/2023
你为什么要使用请求,discord.py 如果你只能使用 discord.py?Discord Selfbots 反对 Discord TOS。

答:

0赞 Jbziscool 7/1/2023 #1

Selfbots 违反了 discords 服务条款,即使不是,您也会因向 api 发送垃圾邮件而受到速率限制。