...

Source file src/github.com/MicahParks/keyfunc/examples/ctx/main.go

Documentation: github.com/MicahParks/keyfunc/examples/ctx

     1  package main
     2  
     3  import (
     4  	"log"
     5  	"time"
     6  
     7  	"github.com/golang-jwt/jwt/v4"
     8  
     9  	"github.com/MicahParks/keyfunc"
    10  )
    11  
    12  func main() {
    13  	// Get the JWKS URL.
    14  	//
    15  	// This is a sample JWKS service. Visit https://jwks-service.appspot.com/ and grab a token to test this example.
    16  	jwksURL := "https://jwks-service.appspot.com/.well-known/jwks.json"
    17  
    18  	// Create the keyfunc options. Use an error handler that logs. Timeout the initial JWKS refresh request after 10
    19  	// seconds. This timeout is also used to create the initial context.Context for keyfunc.Get.
    20  	options := keyfunc.Options{
    21  		RefreshTimeout: time.Second * 10,
    22  		RefreshErrorHandler: func(err error) {
    23  			log.Printf("There was an error with the jwt.Keyfunc\nError: %s", err.Error())
    24  		},
    25  	}
    26  
    27  	// Create the JWKS from the resource at the given URL.
    28  	jwks, err := keyfunc.Get(jwksURL, options)
    29  	if err != nil {
    30  		log.Fatalf("Failed to create JWKS from resource at the given URL.\nError: %s", err.Error())
    31  	}
    32  
    33  	// Get a JWT to parse.
    34  	jwtB64 := "eyJraWQiOiJlZThkNjI2ZCIsInR5cCI6IkpXVCIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJXZWlkb25nIiwiYXVkIjoiVGFzaHVhbiIsImlzcyI6Imp3a3Mtc2VydmljZS5hcHBzcG90LmNvbSIsImlhdCI6MTYzMTM2OTk1NSwianRpIjoiNDY2M2E5MTAtZWU2MC00NzcwLTgxNjktY2I3NDdiMDljZjU0In0.LwD65d5h6U_2Xco81EClMa_1WIW4xXZl8o4b7WzY_7OgPD2tNlByxvGDzP7bKYA9Gj--1mi4Q4li4CAnKJkaHRYB17baC0H5P9lKMPuA6AnChTzLafY6yf-YadA7DmakCtIl7FNcFQQL2DXmh6gS9J6TluFoCIXj83MqETbDWpL28o3XAD_05UP8VLQzH2XzyqWKi97mOuvz-GsDp9mhBYQUgN3csNXt2v2l-bUPWe19SftNej0cxddyGu06tXUtaS6K0oe0TTbaqc3hmfEiu5G0J8U6ztTUMwXkBvaknE640NPgMQJqBaey0E4u0txYgyvMvvxfwtcOrDRYqYPBnA"
    35  
    36  	// Parse the JWT.
    37  	token, err := jwt.Parse(jwtB64, jwks.Keyfunc)
    38  	if err != nil {
    39  		log.Fatalf("Failed to parse the JWT.\nError: %s", err.Error())
    40  	}
    41  
    42  	// Check if the token is valid.
    43  	if !token.Valid {
    44  		log.Fatalf("The token is not valid.")
    45  	}
    46  	log.Println("The token is valid.")
    47  }
    48  

View as plain text