Oauth Authorization configuration

0
Hello, I am using OAuth for authorization from marketplace. I want to know in the server configuration what must be the value of "Jwks_uri" ? Because I am getting exception in the "JA_ValidateJWT" java action. And the error occurs in the line "JwkProvider provider = new UrlJwkProvider(new URL(server.getJwks_uri()));" where server.getJwks_uri() is null. May I know what must be the value set for this attribute?  I am using postman for testing with all details added for token generation.
asked
2 answers
0

When you receive a JWT, it's signed with a private key, and to verify the token's authenticity, you need the corresponding public key, which is often provided through the jwks_uri.

answered
0

Hey Raghavendra,

 

If the token is generated using via external IDP, then that IDP will provide jwks Uri to validate the token.

 

If the token is generated using a certificate, then jwks Uri will not be applicable.

 

Thanks & Regards,

Naman Khard

answered