https://github.com/nilslice/jwt
simple JWT package to create, parse and verify tokens for client authentication
https://github.com/nilslice/jwt
go golang jwt
Last synced: 12 months ago
JSON representation
simple JWT package to create, parse and verify tokens for client authentication
- Host: GitHub
- URL: https://github.com/nilslice/jwt
- Owner: nilslice
- License: mit
- Created: 2015-12-28T04:18:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-11-05T16:27:44.000Z (over 7 years ago)
- Last Synced: 2025-04-10T05:09:01.009Z (12 months ago)
- Topics: go, golang, jwt
- Language: Go
- Size: 9.77 KB
- Stars: 35
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JWT
### Usage
$ go get github.com/nilslice/jwt
package jwt provides methods to create and check JSON Web Tokens. It only implements HMAC 256 encryption and has a very small footprint, ideal for simple usage when authorizing clients
```go
package main
import (
auth "github.com/nilslice/jwt"
"fmt"
"net/http"
"strings"
)
func main() {
http.HandleFunc("/auth/new", func(res http.ResponseWriter, req *http.Request) {
claims := map[string]interface{}{"exp": time.Now().Add(time.Hour * 24).Unix()}
token, err := auth.New(claims)
if err != nil {
http.Error(res, "Error", 500)
return
}
res.Header().Add("Authorization", "Bearer "+token)
res.WriteHeader(http.StatusOK)
})
http.HandleFunc("/auth", func(res http.ResponseWriter, req *http.Request) {
userToken := strings.Split(req.Header.Get("Authorization"), " ")[1]
if auth.Passes(userToken) {
fmt.Println("ok")
} else {
fmt.Println("no")
}
})
http.ListenAndServe(":8080", nil)
}
```