Why not have the public key in JWT payload for convenience
问题 As I understand it: to check the validity of a JWT created using an asymmetric public/private key encryption algorithm, you require the public key along with the JWT header, claim (aka payload) and signature. The JWT header and claim can be decoded freely but can't be verified without the public key to validate the signature with (which is based on the header & claim and created with the private key). My question is, why not just bundle the public key into the claim payload of the token. That