diff options
author | Frederick Muriuki Muriithi | 2024-05-23 09:40:16 -0500 |
---|---|---|
committer | Alexander_Kabui | 2024-08-28 15:02:45 +0300 |
commit | c871b5019ebaf1c57e7c9666b741cfa6a5393942 (patch) | |
tree | df85df4ff1066c6a956245c37670ee6c7b4da68f | |
parent | 31c8f14df9f354ea3cef82c28ce3d9006d424b65 (diff) | |
download | genenetwork2-c871b5019ebaf1c57e7c9666b741cfa6a5393942.tar.gz |
Bug: Compute numeric timestamp for the claims.
-rw-r--r-- | gn2/wqflask/oauth2/toplevel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/oauth2/toplevel.py b/gn2/wqflask/oauth2/toplevel.py index 23965cc1..f0179250 100644 --- a/gn2/wqflask/oauth2/toplevel.py +++ b/gn2/wqflask/oauth2/toplevel.py @@ -47,7 +47,7 @@ def authorisation_code(): "iss": str(oauth2_clientid()), "sub": request.args["user_id"], "aud": urljoin(authserver_uri(), "auth/token"), - "exp": (issued + datetime.timedelta(minutes=5)), + "exp": (issued + datetime.timedelta(minutes=5)).timestamp(), "nbf": int(issued.timestamp()), "iat": int(issued.timestamp()), "jti": str(uuid.uuid4())}, |