jwt icon indicating copy to clipboard operation
jwt copied to clipboard

Community maintained clone of https://github.com/dgrijalva/jwt-go

Results 98 jwt issues
Sort by recently updated
recently updated
newest added

Hello! I posted an MR fixing this issue already at https://github.com/golang-jwt/jwt/pull/441 Here is the issue briefly: The code which verifies multiple audiences, namely: ```golang func (v *Validator) verifyAudience(claims Claims, cmp...

I have a golang module that uses some 3rd party packages that still use `github.com/dgrijalva/jwt-go` As a result, I am adding a replace directive to refer to `github.com/golang-jwt/jwt/v4` instead. It...

Hi Team, I am using the jwt.Parse function to validate tokens in a custom Tyk plugin. Under high load, the code frequently crashes, causing the gateway to fail. This issue...

Somehow the code coverage dropped by 15 % after the last change in a README file. It seems that coveralls is doing something weird. I would suggest moving to codecov,...

i have added versioning to the library. i think it makes it easier since we are facing with this challenge. also it doesn't effect other parts of the projects. here...

In `v6` (https://github.com/golang-jwt/jwt/issues/335) I suggest to remove the global mutable `SigningMethod` registry. Instead of it we could have a global immutable registry for built-in signing methods and `WithSigningMethods(...SigningMethod)` option for...

Helpfully behavior if you need signature after signing token. Example: save signature of token to DB after send signed token to user.

I have noticed that the package `github.com/golang-jwt/jwt/v5` has a global config flag `MarshalSingleStringAsArray`. This was previously discussed in #277, which was closed as fixed by #278. However, #278 did not...