-
Hi there, I wanted to ask about using Client Credential Grant types. I couldn't see a way to change the Grant Type from Authorization Code when creating the Client object. Is the correct way of obtaining a set of tokens using a Client Credentials Grant something like this? Much appreciate a pointer in the right direction :) `const issuer = await Issuer.discover('https://.../openid-configuration'); const client = new issuer.Client({ const tokenSet = client.grant({ console.log('validated Token claims %s', tokenSet.claims); |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yeah, altho its worth mentioning the only "validation" in place is TLS. The response is not processed in any way. |
Beta Was this translation helpful? Give feedback.
Yeah, altho its worth mentioning the only "validation" in place is TLS. The response is not processed in any way.