Skip to content

Commit

Permalink
Turns off token verification
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrJander committed Jan 12, 2021
1 parent fed4492 commit 2797059
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions neptune/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2797059

Please sign in to comment.