DmitrMakeev
commited on
Commit
•
d75522b
1
Parent(s):
cc1517a
Update app.py
Browse files
app.py
CHANGED
@@ -910,7 +910,7 @@ def webhookbz():
|
|
910 |
return jsonify({'error': 'webinarId is required'}), 400
|
911 |
url = f'https://online.bizon365.ru/api/v1/webinars/reports/get?webinarId={webinar_id}'
|
912 |
|
913 |
-
response = requests.get(url, headers={'X-Token':
|
914 |
|
915 |
if response.status_code == 200:
|
916 |
data = response.json()
|
|
|
910 |
return jsonify({'error': 'webinarId is required'}), 400
|
911 |
url = f'https://online.bizon365.ru/api/v1/webinars/reports/get?webinarId={webinar_id}'
|
912 |
|
913 |
+
response = requests.get(url, headers={'X-Token': token})
|
914 |
|
915 |
if response.status_code == 200:
|
916 |
data = response.json()
|