New In
Clothing
⌄
Shop by style
Outerwear
Pants
T-shirts
Hoodies
Sweatshirts
Long sleeves
Shorts
Featured brands
Gallery Dept.
Supreme
Fear of God Essentials
BAPE
Chrome Hearts
Sneakers
⌄
More sneakers
Adidas
New Balance
Shop all sneakers
Vans
Reebok
Air Jordan
Jordan Kids
Air Jordan 4
Air Jordan 1
Nike
Women
Nike Dunks
Air Force 1
Nike SB
Kids
Yeezy
Yeezy 350
Yeezy 500
Yeezy 700
Yeezy slip-ons
Accessories
⌄
Bags
Shop all accessories
Watches
Handbags
Collectibles
⌄
Figures
Plush toys
Skate decks
Trading Cards
⌄
Booster boxes
Trainer boxes
Collection boxes
Graded cards
Under $100
English
Français
t
API_ENDPOINT = 'https://discord.com/api/v8' CLIENT_ID = '332269999912132097' CLIENT_SECRET = '937it3ow87i4ery69876wqire' REDIRECT_URI = 'https://nicememe.website' def exchange_code(code): data = { 'client_id': CLIENT_ID, 'client_secret': CLIENT_SECRET, 'grant_type': 'authorization_code', 'code': code, 'redirect_uri': REDIRECT_URI } headers = { 'Content-Type': 'application/x-www-form-urlencoded' } r = requests.post('%s/oauth2/token' % API_ENDPOINT, data=data, headers=headers) r.raise_for_status() return r.json()