wso2 5.6 身份服务器使用电子邮件创建 SCIM 用户,同时查找用户电子邮件未从 JSON 返回

wso2 5.6 identity server SCIM user creation with email and while find the users email is not returning from JSON

在使用带电子邮件的 SCIM1.1 端点创建用户时。

curl -v -k --user admin:admin --data '{"schemas":[],"name":{"familyName":"gunasinghe","givenName":"hasinitg"},"userName":"hasinitg_sample","password":"hasinitg","emails":[{"primary":true,"value":"hasini_home.com"}]}' --header "Content-Type:application/json" https://localhost:9443/wso2/scim/Users

已创建用户响应:

{"emails":[{"value":"hasini_home.com"}],"meta":{"created":"2018-09-18T15:43:17","location":"https://localhost:9443/wso2/scim/Users/37f051b2-770c-4915-9a3f-623a7404b2a4","lastModified":"2018-09-18T15:43:17"},"schemas":["urn:scim:schemas:core:1.0"],"name":{"familyName":"gunasinghe","givenName":"hasinitg"},"id":"37f051b2-770c-4915-9a3f-623a7404b2a4","userName":"hasinitg_sample"}

从 SCIM 端点检索用户:

curl -v -k --user admin:admin https://localhost:9443/wso2/scim/Users/37f051b2-770c-4915-9a3f-623a7404b2a4

响应是:

{"meta":{"created":"2018-09-18T15:43:17","location":"https://localhost:9443/wso2/scim/Users/37f051b2-770c-4915-9a3f-623a7404b2a4","lastModified":"2018-09-18T15:43:17"},"schemas":["urn:scim:schemas:core:1.0"],"roles":["Internal/everyone"],"name":{"familyName":"gunasinghe","givenName":"hasinitg"},"id":"37f051b2-770c-4915-9a3f-623a7404b2a4","userName":"hasinitg_sample"}

响应和 My-Sql 数据库中缺少电子邮件。任何的想法?

问题似乎在于,如果您将电子邮件作为 JSON 对象发送,则还必须设置类型。当我们发送没有类型属性的电子邮件对象时,会写入以下调试日志。

TID: [-1234] [] [2018-09-19] DEBUG {org.wso2.carbon.identity.scim.common.utils.AttributeMapper} - Type attribute cannot be null for sub attribute: org.wso2.charon.core.attributes.ComplexAttribute@71ebf24c of Complex MultiValuedAttribute: emails. Skip adding as a claim

请参阅 the documentation

中给定的示例请求
{"primary":true,"value":"hasini_home.com","type":"home"}

您可以使用以下请求来简单解决您的问题。

curl -v -k --user admin:admin --data '{"schemas":[],"name":{"familyName":"gunasinghe","givenName":"hasinitg"},"userName":"hasinitg_sample","password":"hasinitg","emails":"hasini_home.com"}' --header "Content-Type:application/json" https://localhost:9443/wso2/scim/Users