Update webhook_handler.py
Browse files- webhook_handler.py +1 -1
webhook_handler.py
CHANGED
@@ -9,7 +9,7 @@ logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(
|
|
9 |
logger = logging.getLogger(__name__)
|
10 |
|
11 |
# Webhook secret for verification (set this when creating the webhook)
|
12 |
-
WEBHOOK_SECRET = "
|
13 |
|
14 |
class WebhookHandler(BaseHTTPRequestHandler):
|
15 |
def do_POST(self):
|
|
|
9 |
logger = logging.getLogger(__name__)
|
10 |
|
11 |
# Webhook secret for verification (set this when creating the webhook)
|
12 |
+
WEBHOOK_SECRET = "eW91ci1zZWNyZXQtc3RyaW5n" # Replace with your secret
|
13 |
|
14 |
class WebhookHandler(BaseHTTPRequestHandler):
|
15 |
def do_POST(self):
|