bx-2052-deal-tab #2

Merged
ksenia_mikhailova merged 25 commits from bx-2052-deal-tab into main 2024-11-19 13:59:00 +03:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 2fe049caa1 - Show all commits

View File

@ -102,9 +102,10 @@ async def deal_tab(
APP_SID: str | None = None, APP_SID: str | None = None,
): ):
try: try:
result = [] b_str = await request.body().decode()
result = parse_qs(b_str)
q = [DOMAIN, PROTOCOL, LANG, APP_SID] q = [DOMAIN, PROTOCOL, LANG, APP_SID]
logger.info(await request.body()) logger.info(result)
logger.info(q) logger.info(q)
return {"status": "success", "result": result, "q": q} return {"status": "success", "result": result, "q": q}
except Exception as e: except Exception as e: