[docs]deffetch_jwks(jwks_uri:str)->List[JWK]:""" Fetch JSON web keys from the given jwks_uri. This uri is part of the provider configuration and used to validate responses and tokens sent by the provider. """bundle=KeyBundle(source=jwks_uri)returnbundle.keys()# type: ignore # because cryptojwk has no typedefs, but we know what this returns