I am working with Python 3.8 and would like to decode my access token. I would like to use python-jose. The call looks like:
user_info = jwt.decode(token=authorization_token,
key=key,
algorithms=algorithm)
What do I use as the key? Is that configured in the admin console somewhere?