Merge branch 'dg/example_code' into release_3_0_0

This commit is contained in:
Dave Grijalva 2016-04-12 14:44:51 -07:00
commit 1b765952cc
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ func ExampleParse_hmac() {
return hmacSampleSecret, nil
})
if claims, ok := token.Claims.(*jwt.MapClaims); ok && token.Valid {
fmt.Println((*claims)["foo"], (*claims)["nbf"])
if claims, ok := token.Claims.(jwt.MapClaims); ok && token.Valid {
fmt.Println(claims["foo"], claims["nbf"])
} else {
fmt.Println(err)
}