登录
首页 >  Golang >  Go问答

使用golang jwt.MapClaims提取用户ID

来源:stackoverflow

时间:2024-02-25 13:33:23 500浏览 收藏

小伙伴们对Golang编程感兴趣吗?是否正在学习相关知识点?如果是,那么本文《使用golang jwt.MapClaims提取用户ID》,就很适合你,本篇文章讲解的知识点主要包括。在之后的文章中也会多多分享相关知识点,希望对大家的知识积累有所帮助!

问题内容

设置一个简单的关联后,用户 has_many 发布了一个带有用户 id 的帖子,似乎有必要解析 jwt 声明以获取用户 id 并将其放置在帖子创建中。

那么,如何从 jwt claims 获取用户 id

我尝试解析令牌但只是显示

map[email:[email protected] exp:1.655701949e+09 username:teste]



tokenString := c.GetHeader("Authorization")
    //
claims := jwt.MapClaims{}
token, err := jwt.ParseWithClaims(tokenString, claims, func(token *jwt.Token) (interface{}, error) {
    return []byte("supersecretkey"), nil
})

if claims, ok := token.Claims.(jwt.MapClaims); ok && token.Valid {
    fmt.Printf("%v", claims )
} else {
    fmt.Println(err)
}

正确答案


我从一开始就告诉你,当你想生成 jwt 时 如下所示:

token := jwt.new(jwt.signingmethodhs256)
// set claims
// this is the information which frontend can use
// the backend can also decode the token and get admin etc.
claims := token.claims.(jwt.mapclaims)
claims["username"] = id
accesstokenexpiretime := time.now().add(time.hour * 48).unix()
claims["exp"] = accesstokenexpiretime
// generate encoded token and send it as response.
// the signing string should be secret (a generated uuid works too)
t, err := token.signedstring([]byte("accesstoken"))

然后当你想解码用户名时,请执行以下操作:

type MyCustomClaims struct {
        Username string `json:"username"`
        jwt.StandardClaims
    }

    auth := c.Request.Header.Get("Authorization")
    if auth == "" {
        c.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{"Message": "Authorization Header Not Found"})
        return
    }
    splitToken := strings.Split(auth, "Bearer ")
    auth = splitToken[1]

    token, err := jwt.ParseWithClaims(auth, &MyCustomClaims{}, func(token *jwt.Token) (interface{}, error) {
        return []byte("AccessToken"), nil
    })

    if err != nil {
        c.AbortWithStatusJSON(http.StatusUnauthorized, gin.H{"Message": "Token is wrong or Expire"})
        return
    }


    if claims, ok := token.Claims.(*MyCustomClaims); ok && token.Valid {
        log.Printf("%v %v", claims.Username, claims.StandardClaims.ExpiresAt)
    }

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于Golang的相关知识,也可关注golang学习网公众号。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>