跳到主要内容

Keycloak FAQ

警告
提示
  • SSO 依赖域名统一

默认 mapper 字段

scopemapperfieldto
rolesrealm rolesrealm_access.rolesUser Realm Role
client rolesresource_access.${client_id}.rolesUser Client Role
web-originsallowed web originsallowed-originsAllowed Web Origins
phonephone numberphone_numberAttribute - phoneNumber
phone number verifiedphone_number_verifiedAttribute - phoneNumberVerified
emailemailemailProperty - phoneNumber
email verifiedemail_verifiedProperty - emailVerified

OIDC Brokering 无法阻止创建本地账号

服务账号 - Service Account

https://medium.com/@mihirrajdixit/getting-started-with-service-accounts-in-keycloak-c8f6798a0675 great for administrative tasks executed on behalf of a service instead of individual user.

https://planet.jboss.org/post/service_accounts_support_in_keycloak allows to authenticate the client application with Keycloak server and retrieve the access token dedicated to this application.

https://www.keycloak.org/docs/latest/server_admin/index.html#_service_accounts

主域 - Master Realm

  • 主要用于超管进行系统管理
  • 不要将 Master Realm 用于业务
  • 可以在具体域下创建管理员,然后禁用 Master Realm
  • 参考

login-status-iframe.html/init 403 异常

  • 确保开启 Implicit Flow Enabled
  • 确保 client_id 正确
    • 如果 client_id 错了会 403,但没有任何地方提示 client_id 错误
    • 非常难排查

invalid_grant: Code not valid

invalid_client_credentials CODE_TO_TOKEN_ERROR

如果是纯前端,需要生成 Token

curl -L -X POST 'http://localhost:8080/auth/realms/whatever-realm/protocol/openid-connect/token' \
-H 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'client_id=clientid-03' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'client_secret=ec78c6bb-8339-4bed-9b1b-e973d27107dc' \
--data-urlencode 'scope=openid' \
--data-urlencode 'username=emuhamma' \
--data-urlencode 'password=1'

Could not modify attribute for DN

  • 如果使用了 federation,修改密码可能被禁止

Found an Attribute element with duplicated Name

  • 使用 SAML 的时候 Nextcloud 要设置角色列表返回单个角色
  • (Realm) -> Client Scopes -> role_list (saml) -> Mappers tab -> role list -> 'Single Role Attribute'.

IDP parameter for the UID (username) not found. Possible parameters are: ["Role"]

  • Nextcloud + SAML 出现
  • 在 Keycloak Client Mappers 添加 Mapper
OptionValue
Nameusername
Mapper TypeUser Property
Propertyusername
Friendly Name
SAML Attribute Nameusername
SAML Attribute NameFormatBasic

Access to XMLHttpRequest at keycloak from origin 'http://127.0.0.1:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

  • 逻辑上来说是需要配置 Client 的 Web Origins
  • 配置后还是出现
  • curl 测试正常
  • 浏览器没有发起 OPTIONS 请求
  • 如果只是前端使用,一定选择 public
# 直接测试有返回
curl \
--verbose \
--request OPTIONS \
https://keycloak \
--header 'Origin: http://127.0.0.1:3000' \
--header 'Access-Control-Request-Headers: Origin, Accept, Content-Type' \
--header 'Access-Control-Request-Method: POST'
date: Fri, 15 Jan 2021 15:41:37 GMT
content-length: 0
access-control-allow-headers: Origin, Accept, X-Requested-With, Content-Type, Access-Control-Request-Method, Access-Control-Request-Headers, Authorization
x-xss-protection: 1; mode=block
referrer-policy: no-referrer
access-control-allow-origin: http://127.0.0.1:3000
access-control-allow-credentials: true
strict-transport-security: max-age=15724800; includeSubDomains
x-content-type-options: nosniff
access-control-allow-methods: POST, OPTIONS
access-control-max-age: 3600

JWKs 没有签名的公钥

  • 不是所有算法都有
  • 可以设置为有 Public key 的算法

域名映射域

没有很好的办法

Unexpected error when authenticating with identity provider

可开启 login 日志排查具体错误

如果对方没出问题,检查配置。

发现 开启 back-channel logout 且设置为 basic auth 解决了问题。

ISPN000474: Error processing request 4@sparkle-stack-keycloak-76f867dd87-nkpcl: protostream.com.google.protobuf.InvalidProtocolBufferException: While parsing a protocol message, the input ended unexpectedly in the middle of a field. This could mean either that the input has been truncated or that an embedded message misreported its own length.

Kubernetes 上部署修改发现逻辑为 KUBE_PING

env:
# https://github.com/codecentric/helm-charts/issues/149
- name: JGROUPS_DISCOVERY_PROTOCOL
value: kubernetes.KUBE_PING
- name: JGROUPS_DISCOVERY_PROPERTIES
value: dump_requests=true,port_range=0,namespace={{.Release.Namespace}}

failed getting JSON response from Kubernetes Client

API Key