Beef up example
This commit is contained in:
parent
1d3c39bb49
commit
e80c34437b
2 changed files with 22 additions and 4 deletions
13
README.md
13
README.md
|
@ -9,6 +9,7 @@ your application:
|
|||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
@ -41,8 +42,16 @@ func setClaims(id string) (map[string]interface{}, error) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
func verifyClaims([]byte) error {
|
||||
// We don't really care about the claims, just approve as-is
|
||||
func verifyClaims(claims []byte) error {
|
||||
currentTime := time.Now()
|
||||
var c struct {
|
||||
Iat int64
|
||||
Exp int64
|
||||
}
|
||||
_ = json.Unmarshal(claims, &c)
|
||||
if currentTime.After(time.Unix(c.Exp, 0)) {
|
||||
return errors.New("this token has expired")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
|
@ -33,8 +34,16 @@ func setClaims(id string) (map[string]interface{}, error) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
func verifyClaims([]byte) error {
|
||||
// We don't really care about the claims, just approve as-is
|
||||
func verifyClaims(claims []byte) error {
|
||||
currentTime := time.Now()
|
||||
var c struct {
|
||||
Iat int64
|
||||
Exp int64
|
||||
}
|
||||
_ = json.Unmarshal(claims, &c)
|
||||
if currentTime.After(time.Unix(c.Exp, 0)) {
|
||||
return errors.New("this token has expired")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue