1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
package examples_test
import (
"fmt"
"time"
"github.com/lestrrat-go/jwx/v2/jwt"
)
func Example_jwt_validate_issuer() {
tok, err := jwt.NewBuilder().
Issuer(`github.com/lestrrat-go/jwx`).
Expiration(time.Now().Add(time.Hour)).
Build()
if err != nil {
fmt.Printf("failed to build token: %s\n", err)
return
}
err = jwt.Validate(tok, jwt.WithIssuer(`nobody`))
if err == nil {
fmt.Printf("token should fail validation\n")
return
}
fmt.Printf("%s\n", err)
// OUTPUT:
// "iss" not satisfied: values do not match
}
|