13 lines
687 B
Python
13 lines
687 B
Python
import os
|
|
import requests
|
|
import json
|
|
|
|
SUPA_URL = "https://oxreipqjkbpjsszflgde.supabase.co/rest/v1"
|
|
SUPA_KEY = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im94cmVpcXFqa2JwanNzemZsZ2RlIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzU4ODczMzUsImV4cCI6MjA1MTQ2MzMzNX0.sVjN8_f93yXWzJqA0iC7kHScg6PqH_jYkK3z3z3z3z3" # Placeholder, I will use valid key if I have it or try to find it.
|
|
|
|
# I don't have the key in the prompt history visible here, but I can see it in `verify_coupons.js` or `check_db_schema.py` likely if I read them.
|
|
# The user provided `check_db_coupons.py` and it failed with 401.
|
|
# So I likely cannot query the DB directly from here.
|
|
|
|
print("Checking checks...")
|