mirror of https://github.com/golang-jwt/jwt.git
Update README.md
`jwt.New()` only returns one parameter, `*Token`
This commit is contained in:
parent
bdb2a327a9
commit
bd53e37c6d
|
@ -20,10 +20,10 @@ This library is considered production ready. Feedback and feature requests are
|
|||
## Create a token
|
||||
|
||||
```go
|
||||
token, _ := jwt.New(jwt.GetSigningMethod("HS256"))
|
||||
token := jwt.New(jwt.GetSigningMethod("HS256"))
|
||||
token.Claims["foo"] = "bar"
|
||||
token.Claims["exp"] = time.Now().Add(time.Hour * 72).Unix()
|
||||
tokenString, err := token.SignedString(mySigningKey)
|
||||
```
|
||||
|
||||
Documentation can be found [here](http://godoc.org/github.com/dgrijalva/jwt-go)
|
||||
Documentation can be found [here](http://godoc.org/github.com/dgrijalva/jwt-go)
|
||||
|
|
Loading…
Reference in New Issue