Discord Auto Join Server

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Discord Auto Join Server

by Anonymous » 25 Aug 2025, 08:33

Wenn ich den Code ausführe, erhalte ich Statuscode 400 und ich bin mir nicht sicher, wie ich ihn beheben soll, damit er 200.

Code: Select all

#base url
url = "https://discord.com/api/v10/invites/{}"
headers = {
"Authorization":"mydiscordtoken"
}

r = requests.post(url.format("N5sCvu4C"), headers=headers, json={})
print(r.status_code) #prints 200 if all went well

Top