What’s the meaning of the “kid” claim in a JWT token?
kid is an optional header claim which holds a key identifier, particularly useful when you have multiple keys to sign the tokens and you need to look up the right one to verify the signature. Once a signed JWT is a JWS, consider the definition from the RFC 7515: 4.1.4. “kid” (Key ID) Header Parameter … Read more