Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2263,6 +2263,9 @@ def serve_html_vk(filename):
|
|
2263 |
base_url = urlparse(in_url).scheme + '://' + urlparse(in_url).netloc + urlparse(in_url).path
|
2264 |
|
2265 |
|
|
|
|
|
|
|
2266 |
vk_app_id = request.args.get('vk_app_id')
|
2267 |
vk_are_notifications_enabled = request.args.get('vk_are_notifications_enabled')
|
2268 |
vk_is_app_user = request.args.get('vk_is_app_user')
|
@@ -2280,7 +2283,7 @@ def serve_html_vk(filename):
|
|
2280 |
|
2281 |
# Параметры запроса
|
2282 |
params = {
|
2283 |
-
'vk_access_token_settings':
|
2284 |
'vk_app_id': vk_app_id,
|
2285 |
'vk_are_notifications_enabled': vk_are_notifications_enabled,
|
2286 |
'vk_is_app_user': vk_is_app_user,
|
|
|
2263 |
base_url = urlparse(in_url).scheme + '://' + urlparse(in_url).netloc + urlparse(in_url).path
|
2264 |
|
2265 |
|
2266 |
+
vk_access_token_settings = request.args.get('vk_access_token_settings', '')
|
2267 |
+
|
2268 |
+
|
2269 |
vk_app_id = request.args.get('vk_app_id')
|
2270 |
vk_are_notifications_enabled = request.args.get('vk_are_notifications_enabled')
|
2271 |
vk_is_app_user = request.args.get('vk_is_app_user')
|
|
|
2283 |
|
2284 |
# Параметры запроса
|
2285 |
params = {
|
2286 |
+
'vk_access_token_settings': vk_access_token_settings,
|
2287 |
'vk_app_id': vk_app_id,
|
2288 |
'vk_are_notifications_enabled': vk_are_notifications_enabled,
|
2289 |
'vk_is_app_user': vk_is_app_user,
|