From 279705944594723cdf426550ad34138cd2159b9b Mon Sep 17 00:00:00 2001 From: Piotr Jander Date: Tue, 12 Jan 2021 14:00:13 +0100 Subject: [PATCH] Turns off token verification --- neptune/oauth.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/neptune/oauth.py b/neptune/oauth.py index 1135ad487..f7e72d62d 100644 --- a/neptune/oauth.py +++ b/neptune/oauth.py @@ -24,8 +24,14 @@ from neptune.utils import with_api_exceptions_handler, update_session_proxies - -_decoding_options = {"verify_signature": False, 'verify_aud': False} +_decoding_options = { + "verify_signature": False, + "verify_exp": False, + "verify_nbf": False, + "verify_iat": False, + "verify_aud": False, + "verify_iss": False +} class NeptuneAuth(AuthBase):