我正在尝试使用gocloak从 keycloak 验证我的令牌,并为此使用以下代码。
token:=""
client:= gocloak.NewClient("https://example.com")
_, err := client.RetrospectToken(token,"client-id" ,"client-secret", "realm")
log.Print(err.Error())
我遇到以下错误,
Post https://example.com/auth/realms/realm/protocol/openid-connect/token/introspect: x509: certificate signed by unknown authority
有什么办法可以跳过 gocloak 中的证书验证吗?
米琪卡哇伊
相关分类