Santhosh S
Santhosh S

Reputation: 1159

Decode JWT in golang jwt-go

What's the equivalent of this code (https://github.com/auth0/java-jwt) in golang --- jwt-go library

  DecodedJWT jwt = JWT.decode(token);

in golang's jwt-go library, when I have to parse the token I need to have the verification key which is not required in the java library.

Upvotes: 0

Views: 6418

Answers (1)

Berkant İpek
Berkant İpek

Reputation: 1124

From docs at:

func (p *Parser) ParseUnverified(tokenString string, claims Claims) (token *Token, parts []string, err error)

WARNING: Don't use this method unless you know what you're doing.

This method parses the token but doesn't validate the signature. It's only ever useful in cases where you know the signature is valid (because it has been checked previously in the stack) and you want to extract values from it.


[example]

Upvotes: 3

Related Questions