E0508 00:06:30.913838 1 authenticator.go:199] failed to verify id token: oidc: id token signed with unsupported algorithm, expected [“RS256”] got “HS256”
E0508 00:06:30.914645 1 utils.go:76] /root/go/src/kubesphere.io/kubesphere/pkg/kapis/oauth/handler.go:195 Unauthorized: failed to verify id token: oidc: id token signed with unsupported algori
thm, expected [“RS256”] got “HS256”

看了有这段代码

oidcProvider.Verifier = provider.Verifier(&oidc.Config{
	// TODO: support HS256
	ClientID: oidcProvider.ClientID,
})

现在已经支持HS256算法了吗,需要怎么操作呢

    moliunian 目前主流的还是使用 RS256,HS256 暂时没有支持,也欢迎你提交相关的PR,这是一个 good first issue