Commit a57f31a7 by Oleksandr Barabash

query_token log output added

parent 0a682ec1
...@@ -82,6 +82,9 @@ async def v1_get_initiations(request: Request) -> Response: ...@@ -82,6 +82,9 @@ async def v1_get_initiations(request: Request) -> Response:
""" Get Initiations by Notification ID """ """ Get Initiations by Notification ID """
# noinspection PyBroadException # noinspection PyBroadException
try: try:
query_token = request.query.get("token")
Log.d(TAG, "v1_get_initiations::query_token: {}".format(query_token))
token = b64decode_str_safe(request.query.get("token")) token = b64decode_str_safe(request.query.get("token"))
notification_id = request.match_info['notification_id'] notification_id = request.match_info['notification_id']
init_items, next_token = await COSMOS_CLIENT.get_initiation_items( init_items, next_token = await COSMOS_CLIENT.get_initiation_items(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment