Documentation
¶
Index ¶
Constants ¶
View Source
const TokenExpireDuration = time.Hour * 2
定义过期时间
Variables ¶
This section is empty.
Functions ¶
Types ¶
type MyClaims ¶
type MyClaims struct {
UserID int64 `json:"user_id"`
Username string `json:"username"`
jwt.StandardClaims
}
MyClaims 自定义声明结构体并内嵌 jwt.StandarCMyClaims jwt 包自带的 jwt.StandardClaims 只包含了官方字段 我们这里需要额外记录一个 username 字段,所以要自定义结构体 如果想要保存更多的信息,都可以添加到这个结构体中
func ParseToken ¶
Click to show internal directories.
Click to hide internal directories.