Auth0 verification key

I have this function that is supposed to unpack JWT access token I get from Auth0

claims := jwt.MapClaims{}
token, err := jwt.ParseWithClaims(tokenString, claims, func(token *jwt.Token) (interface{}, error) {
return byte(“”), nil
})
but I need verification key, which I have not been able to find anywhere how to generate it

Hi @MarkoGalic1998,

This example shows how to implement a JWT validator and retrieve the public key in Golang:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.