我正在使用 golang 来实现针对 Okta 的 PKCE 身份验证流程。Okta 需要一个至少包含 43 个字符的 url 安全字符串(验证者),然后计算一个 sha256 哈希,该哈希以 base64 URL 编码(质询)的形式发送。Okta PKCE 流程
我生成一个随机验证器。这是一个示例: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."
}
这是 POST 到的逻辑/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)