GH syntax highlighting
This commit is contained in:
parent
11c03db65e
commit
dc58eb70a2
1 changed files with 73 additions and 65 deletions
|
@ -3,6 +3,7 @@
|
||||||
A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into
|
A simple, opinionated Go net/http middleware for integrating JSON Web Tokens into
|
||||||
your application:
|
your application:
|
||||||
|
|
||||||
|
```go
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -70,6 +71,7 @@ your application:
|
||||||
http.Handle("/secure", j.Secure(protect, verifyClaimsFunc))
|
http.Handle("/secure", j.Secure(protect, verifyClaimsFunc))
|
||||||
http.ListenAndServe(":8080", nil)
|
http.ListenAndServe(":8080", nil)
|
||||||
}
|
}
|
||||||
|
```
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
|
@ -85,17 +87,21 @@ tokens), a function for authenticating user, and a function for generating a
|
||||||
user's claims. The idea here is to be dead-simple for someone to drop this into
|
user's claims. The idea here is to be dead-simple for someone to drop this into
|
||||||
a project and hit the ground running.
|
a project and hit the ground running.
|
||||||
|
|
||||||
|
```go
|
||||||
config := &jwt.Config{
|
config := &jwt.Config{
|
||||||
Secret: "password",
|
Secret: "password",
|
||||||
Auth: authFunc, // func(string, string) error
|
Auth: authFunc, // func(string, string) error
|
||||||
Claims: claimsFunc, // func(string) (map[string]interface{})
|
Claims: claimsFunc, // func(string) (map[string]interface{})
|
||||||
}
|
}
|
||||||
j, err := jwt.NewMiddleware(config)
|
j, err := jwt.NewMiddleware(config)
|
||||||
|
```
|
||||||
|
|
||||||
Once the middleware is instanciated, create a route for users to generate a JWT
|
Once the middleware is instanciated, create a route for users to generate a JWT
|
||||||
at.
|
at.
|
||||||
|
|
||||||
|
```go
|
||||||
http.Handle("/authenticate", j.GenerateToken())
|
http.Handle("/authenticate", j.GenerateToken())
|
||||||
|
```
|
||||||
|
|
||||||
The auth function takes two arguments (the identity, and the authorization
|
The auth function takes two arguments (the identity, and the authorization
|
||||||
key), POSTed as a JSON-encoded body:
|
key), POSTed as a JSON-encoded body:
|
||||||
|
@ -112,7 +118,9 @@ function should return a `map[string]interface{}` with the desired claimset.
|
||||||
Routes are "secured" by calling the `Secure(http.Handler, jwt.VerifyClaimsFunc)`
|
Routes are "secured" by calling the `Secure(http.Handler, jwt.VerifyClaimsFunc)`
|
||||||
handler:
|
handler:
|
||||||
|
|
||||||
|
```go
|
||||||
http.Handle("/secureendpoint", j.Secure(someHandler, verifyClaimsFunc))
|
http.Handle("/secureendpoint", j.Secure(someHandler, verifyClaimsFunc))
|
||||||
|
```
|
||||||
|
|
||||||
The claims verification function is called after the token has been parsed and
|
The claims verification function is called after the token has been parsed and
|
||||||
validated: this is where you control how your application handles the claims
|
validated: this is where you control how your application handles the claims
|
||||||
|
|
Loading…
Add table
Reference in a new issue