forked from OddDevelopment/OperaGX-Nitro-Gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
67 lines (57 loc) · 2.24 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import requests
import json
import time
import random
import string
# ---
# Coded by Odd!
# Contributers: DuckyBlender and NorthernChicken
# Github: https://github.com/OddDevelopment/OperaGX-Nitro-Gen
# Portfolio: https://odd.rip
# ---
def generate_random_string(length):
characters = string.ascii_letters + string.digits
return ''.join(random.choices(characters, k=length))
if __name__ == "__main__":
url = 'https://api.discord.gx.games/v1/direct-fulfillment'
headers = {
'authority': 'api.discord.gx.games',
'accept': '*/*',
'accept-language': 'en-US,en;q=0.9',
'content-type': 'application/json',
'origin': 'https://www.opera.com',
'referer': 'https://www.opera.com/',
'sec-ch-ua': '"Opera GX";v="105", "Chromium";v="119", "Not?A_Brand";v="24"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'cross-site',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 OPR/105.0.0.0'
}
data = {
'partnerUserId': generate_random_string(64)
}
session = requests.Session()
try:
while True:
response = session.post(url, headers=headers, json=data)
if response.status_code == 200:
token = response.json()['token']
with open('codes.txt', 'a') as file:
file.write(f"https://discord.com/billing/partner-promotions/1180231712274387115/{token}\n")
print("Token saved to codes.txt file.")
elif response.status_code == 429:
print("Rate limit exceeded! Waiting one minute to allow for cooldown.")
time.sleep(60)
elif response.status_code == 504:
print("Server timed out! Trying again in 5 seconds.")
time.sleep(5)
else:
print(f"Request failed with status code {response.status_code}.")
print(f"Error message: {response.text}")
time.sleep(1)
except Exception as e:
print(f"An error occurred: {str(e)}")
finally:
session.close()