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