Does core provide a way to verify JWT created by i...
# support-questions-legacy
k
Does core provide a way to verify JWT created by it? I'm using the node SDK and didn't find anything explicit in the documentation. Do I need to use
getJWKS
to get the
JsonWebKey
, then use one of it's parameters to verify the JWT with a 3rd party?
r
hey @kaegiluppi You can use any JWT verification lib, and the JWKs URL that you provide to that lib should point to the server itself (in the jwks endpoint exposed by our middleware)
k
thanks, will try to look into that