<@U04UQ68083H> on which enpoint on localhost is we...
# ory-copilot
o
@chilly-king-10285 on which enpoint on localhost is well known jwk hosted
c
A message from kapa.ai
The well-known JSON Web Key Set (JWKS) is hosted at the
/.well-known/jwks.json
endpoint. For a local Ory project, you can access it by pointing your browser or API client to
http://{project.slug}.<http://projects.oryapis.com/.well-known/jwks.json|projects.oryapis.com/.well-known/jwks.json>
. This endpoint contains the public keys necessary for verifying ID tokens and JWT access tokens. For example, if you're using Ory Hydra, you can retrieve a JSON Web Key Set by making a GET request to
/admin/keys/{set}
. In the context of Ory Proxy, the public key for validating JSON Web Tokens (JWTs) is available at
/.ory/proxy/jwks.json
. Please replace
{project.slug}
and
{set}
with your specific project's slug and the specific set ID, respectively. Sources: - [Ory Hydra JWKS](https://www.ory.sh/docs/hydra/jwks#the-role-of-well-knownjwksjson) - [Ory API Reference](https://www.ory.sh/docs/reference/api) - [Ory Proxy JWT](https://www.ory.sh/docs/guides/cli/proxy-and-tunnel#use-ory-proxy-with-json-web-tokens)