There is no GetClaims. The only way to verify a token through the SDK is GetUser, a network call every time.
js and kotlin do it like this: decode the token, check exp, fetch /.well-known/jwks.json (cached 10 min) and verify the signature locally. Symmetric key (HS*) or no kid: fall back to getUser.
Task<GetClaimsResponse> GetClaims(string? jwt = null, GetClaimsOptions? options = null);
#262 depends on this.
There is no GetClaims. The only way to verify a token through the SDK is GetUser, a network call every time.
js and kotlin do it like this: decode the token, check exp, fetch
/.well-known/jwks.json(cached 10 min) and verify the signature locally. Symmetric key (HS*) or no kid: fall back to getUser.#262 depends on this.