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 (
"encoding/json"
"fmt"
"os"
"github.com/lestrrat-go/jwx/v2/jwt"
)
func Example_jwt_construct() {
tok := jwt.New()
if err := tok.Set(jwt.IssuerKey, `github.com/lestrrat-go/jwx`); err != nil {
fmt.Printf("failed to set claim: %s\n", err)
return
}
if err := tok.Set(jwt.AudienceKey, `users`); err != nil {
fmt.Printf("failed to set claim: %s\n", err)
return
}
if err := json.NewEncoder(os.Stdout).Encode(tok); err != nil {
fmt.Printf("failed to encode to JSON: %s\n", err)
return
}
// OUTPUT:
// {"aud":["users"],"iss":"github.com/lestrrat-go/jwx"}
}
|