Update app.py
Browse files
app.py
CHANGED
@@ -2256,8 +2256,9 @@ def upload_page_vk():
|
|
2256 |
def serve_html_vk(filename):
|
2257 |
try:
|
2258 |
# Получаем параметры из GET-запроса
|
|
|
2259 |
apps_id = request.args.get('apps_id')
|
2260 |
-
|
2261 |
vk_are_notifications_enabled = request.args.get('vk_are_notifications_enabled')
|
2262 |
vk_is_app_user = request.args.get('vk_is_app_user')
|
2263 |
logging.debug(f"Received params: apps_id={apps_id}, fullUrl={fullUrl}, vk_are_notifications_enabled={vk_are_notifications_enabled}, vk_is_app_user={vk_is_app_user}")
|
|
|
2256 |
def serve_html_vk(filename):
|
2257 |
try:
|
2258 |
# Получаем параметры из GET-запроса
|
2259 |
+
fullUrl = ""
|
2260 |
apps_id = request.args.get('apps_id')
|
2261 |
+
base_url = request.args.get('fullUrl')
|
2262 |
vk_are_notifications_enabled = request.args.get('vk_are_notifications_enabled')
|
2263 |
vk_is_app_user = request.args.get('vk_is_app_user')
|
2264 |
logging.debug(f"Received params: apps_id={apps_id}, fullUrl={fullUrl}, vk_are_notifications_enabled={vk_are_notifications_enabled}, vk_is_app_user={vk_is_app_user}")
|