Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Create app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OddDevelopment committed Dec 20, 2023
1 parent 7907334 commit fc1c444
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit fc1c444

Please sign in to comment.