We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing jwt kid header claim
Hi everyone,
I have a custom JWT template set in the dashboard for token generation. When I try to verify the token, I get an error: missing jwt kid header claim.
I checked the tokens on jwt.io and yes, they don't have a kid in header. Is this an issue with Clerk's custom JWT Templates, or with this Go SDK?
jwt.io
kid
eyJhbGciOiJIUzI1NiIsImNhdCI6ImNsX0I3ZDRQRDIyMkFBQSIsInR5cCI6IkpXVCJ9.eyJhcHBfbWV0YWRhdGEiOnt9LCJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNzI1ODc5ODg0LCJpYXQiOjE3MjU4Nzk4NTQsImlzcyI6Imh0dHBzOi8vaW1tZW5zZS1zbG90aC01MS5jbGVyay5hY2NvdW50cy5kZXYiLCJqdGkiOiI2NDJkMjYwOTkxNTBkNTQ0NmQ0YyIsIm5iZiI6MTcyNTg3OTg0OSwicGhvbmUiOiIrMTU1NTU1NTAxMDAiLCJyb2xlIjoiYXV0aGVudGljYXRlZCIsInN1YiI6InVzZXJfMmxwYkVBUERCcUNpY0lZMEVLeGtSZU5lZGRVIiwidXNlcl9tZXRhZGF0YSI6e319.GLY3OKYdZhPgj1S9G0ztjc_lje4Xfym2ncwMjQHr7UE
This is the call I make:
claims, err := client.VerifyToken(jwtToken, verifyTokenOptions...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone,
I have a custom JWT template set in the dashboard for token generation. When I try to verify the token, I get an error:
missing jwt kid header claim
.I checked the tokens on
jwt.io
and yes, they don't have akid
in header. Is this an issue with Clerk's custom JWT Templates, or with this Go SDK?Token Example
Code Example
This is the call I make:
The text was updated successfully, but these errors were encountered: