Golang sha256哈希不能满足okta代码挑战

问题描述 投票:0回答:1

我正在使用golang来针对Okta实施PKCE身份验证流程。 Okta需要一个至少43个字符的url安全字符串(验证者),然后计算一个sha256哈希值,该哈希值以base64 URL编码的形式发送(挑战)。 Okta PKCE Flow

我生成一个随机验证器。这是一个示例:aAOzSsxfONaAauKYKRABWUfZLFgVFZqgbJRaArwKAzhzEWurUAhDyzcTkSKLClFL

要生成base64编码的sha256和:

        hasher := sha256.New()
        hasher.Write([]byte(login.CodeVerifier))
        codeChallenge := base64.URLEncoding.EncodeToString(hasher.Sum(nil))

[当获得上述样品verifier时产生了挑战:1XvaG5_-p9OPfxH9yeLmSWu5zGHxW6Pjq_HrdSsI-kk=

但在完成针对/token端点的POST时始终返回错误:

{
"error": "invalid_grant",
"error_description": "PKCE verification failed."
}

这是发布到/token的逻辑:

        code := r.URL.Query().Get("code")
        state := r.URL.Query().Get("state")
        log.Debug().Msgf("callback code:%s state:%s verifier:%s", code, state, loginCache[state])

        values := url.Values{}
        values.Set("grant_type", "authorization_code")
        values.Set("client_id", clientID)
        values.Set("redirect_uri", redirectURI)
        values.Set("code", code)
        values.Set("code_verifier", loginCache[state])

        request, _ := http.NewRequest("POST", oktaTokenURL, strings.NewReader(values.Encode()))
        request.URL.RawQuery = values.Encode()
        request.Header.Set("accept", "application/json")
        request.Header.Set("cache-control", "no-cache")
        request.Header.Set("content-type", "application/x-www-form-urlencoded")

        response, err := http.DefaultClient.Do(request)
go okta pkce
1个回答
0
投票
Base64url Encoding Base64 encoding using the URL- and filename-safe character set defined in Section 5 of [RFC4648], with all trailing '=' characters omitted (as permitted by Section 3.2 of [RFC4648]) and without the inclusion of any line breaks, whitespace, or other additional characters. (See Appendix A for notes on implementing base64url encoding without padding.)

查看base64 documentation in Govar RawStdEncoding = StdEncoding.WithPadding(NoPadding)应该输出正确的格式。

RawStdEncoding是标准的原始,未填充的base64编码,如RFC 4648第3.2节中所定义。这与StdEncoding相同,但是省略了填充字符。

© www.soinside.com 2019 - 2024. All rights reserved.