var github.com/golang-jwt/jwt/v5.ErrTokenMalformed
7 uses
github.com/golang-jwt/jwt/v5 (current package)
errors.go#L12: ErrTokenMalformed = errors.New("token is malformed")
parser.go#L82: return token, newError("could not base64 decode signature", ErrTokenMalformed, err)
parser.go#L144: return nil, nil, newError("token contains an invalid number of segments", ErrTokenMalformed)
parser.go#L152: return token, parts, newError("could not base64 decode header", ErrTokenMalformed, err)
parser.go#L155: return token, parts, newError("could not JSON decode header", ErrTokenMalformed, err)
parser.go#L163: return token, parts, newError("could not base64 decode claim", ErrTokenMalformed, err)
parser.go#L187: return token, parts, newError("could not JSON decode claim", ErrTokenMalformed, err)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |