Merubokkusu / Discord-S.C.U.M

A Discord API Wrapper for Userbots/Selfbots written in Python.
MIT License
581 stars 170 forks source link

Need help about join Guild with token Hcaptcha #456

Open zodiaccong opened 1 year ago

zodiaccong commented 1 year ago

As the title says, I get token that are solved with CapSolver. What do I have to do with it next in order for me to join the Guild? I tried the following code but it doesn't seem to work:


data = {
            "captcha_key": token_captcha
        }
        session = requests.Session()
        response = session.post("https://discord.com/invite/abc", data=data)
        if response.status_code == 200:
            print("Successfull")
        else:
            print("!!!!")