Fix variable name in parse and verify example

This commit is contained in:
Mustafa Altun 2015-04-10 15:31:30 +03:00
parent 3dd0a21a31
commit 211399e41a
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ Parsing and verifying tokens is pretty straight forward. You pass in the token
```go
token, err := jwt.Parse(myToken, func(token *jwt.Token) (interface{}, error) {
// Don't forget to validate the alg is what you expect:
if _, ok := t.Method.(*jwt.SigningMethodRSA); !ok {
return nil, fmt.Errorf("Unexpected signing method: %v", t.Header["alg"])
if _, ok := token.Method.(*jwt.SigningMethodRSA); !ok {
return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"])
}
return myLookupKey(token.Header["kid"])
})