From fc1c444fc519e8a64e55879e2dbc843d5137bdba Mon Sep 17 00:00:00 2001 From: OddDevelopment <135460135+OddDevelopment@users.noreply.github.com> Date: Wed, 20 Dec 2023 08:36:12 -0800 Subject: [PATCH] Create app.py --- app.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 app.py diff --git a/app.py b/app.py new file mode 100644 index 0000000..5080e00 --- /dev/null +++ b/app.py @@ -0,0 +1,42 @@ +import requests +import json +import time + +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': '50b1bf177eca2a06f77680c1aa6277e1d5a44eb6d8b4a72545348e4828cf0753' +} + +while True: + # Sending POST request + response = requests.post(url, headers=headers, data=json.dumps(data)) + + # Checking if the request was successful + if response.status_code == 200: + token = json.loads(response.text)['token'] + # Writing token to codes.txt with the specified URL prefix + with open('codes.txt', 'a') as file: # Use 'a' to append to the file + file.write(f"https://discord.com/billing/partner-promotions/1180231712274387115/{token}\n") + print("Token saved to codes.txt file.") + else: + print(f"Request failed with status code {response.status_code}.") + print(f"Error message: {response.text}") + + # Wait for 1 second before the next iteration + time.sleep(1)