Extracts the JWT claims present in the access token by first verifying the JWT against the server's JSON Web Key Set endpoint /.well-known/jwks.json which is often cached, resulting in significantly faster responses. Prefer this method over get_user
which always sends a request to the Auth server for each JWT.
An optional specific JWT you wish to verify, not the one you can obtain from [`get_session`](/docs/reference/python/auth-getsession).
If set, this JSON Web Key Set is going to have precedence over the cached value available on the server.
response = supabase.auth.get_claims()