Update app.py
Browse files
app.py
CHANGED
@@ -2263,7 +2263,12 @@ def serve_html_vk(filename):
|
|
2263 |
vk_are_notifications_enabled = request.args.get('vk_are_notifications_enabled')
|
2264 |
vk_is_app_user = request.args.get('vk_is_app_user')
|
2265 |
vk_is_favorite = request.args.get('vk_is_favorite')
|
2266 |
-
|
|
|
|
|
|
|
|
|
|
|
2267 |
|
2268 |
|
2269 |
logging.debug(f"Received params: apps_id={apps_id}, vk_are_notifications_enabled={vk_are_notifications_enabled}, vk_is_app_user={vk_is_app_user}")
|
@@ -2274,7 +2279,8 @@ def serve_html_vk(filename):
|
|
2274 |
'vk_app_id': vk_app_id,
|
2275 |
'vk_are_notifications_enabled': vk_are_notifications_enabled,
|
2276 |
'vk_is_app_user': vk_is_app_user,
|
2277 |
-
"vk_is_favorite": vk_is_favorite
|
|
|
2278 |
}
|
2279 |
|
2280 |
|
|
|
2263 |
vk_are_notifications_enabled = request.args.get('vk_are_notifications_enabled')
|
2264 |
vk_is_app_user = request.args.get('vk_is_app_user')
|
2265 |
vk_is_favorite = request.args.get('vk_is_favorite')
|
2266 |
+
vk_language = request.args.get('vk_language')
|
2267 |
+
vk_platform = request.args.get('vk_platform')
|
2268 |
+
vk_ref = request.args.get('vk_ref')
|
2269 |
+
vk_ts = request.args.get('vk_ts')
|
2270 |
+
vk_user_id = request.args.get('vk_user_id')
|
2271 |
+
sign = request.args.get('sign')
|
2272 |
|
2273 |
|
2274 |
logging.debug(f"Received params: apps_id={apps_id}, vk_are_notifications_enabled={vk_are_notifications_enabled}, vk_is_app_user={vk_is_app_user}")
|
|
|
2279 |
'vk_app_id': vk_app_id,
|
2280 |
'vk_are_notifications_enabled': vk_are_notifications_enabled,
|
2281 |
'vk_is_app_user': vk_is_app_user,
|
2282 |
+
"vk_is_favorite": vk_is_favorite,
|
2283 |
+
"vk_language": vk_language
|
2284 |
}
|
2285 |
|
2286 |
|