我正在使用 WSO2 Identity Server 5.7 版,我想通过 SCIM2 API 更改用户密码。
这是我的输入,我很确定一切都是正确的:
- 网址:
PATCH <IDP_URL>/scim2/Me
- HTTP 请求标头,例如 Basic authentication info 和 Content-Type: "application/scim+json" 等。
- 身体:
{"schemas":["urn:ietf:params:scim:api:messages:2.0:PatchOp"],"Operations":[{"op":"replace","value":{"password":"shaggy"}}]}
我总是收到错误:
{
"schemas": "urn:ietf:params:scim:api:messages:2.0:Error",
"detail": "Error in performing the patch operation on user resource.",
"status": "500"
}
但 WSO2 日志仅显示以下行:
INFO {org.wso2.carbon.identity.scim2.common.impl.SCIMUserManager} - User: varga123 is retrieved through SCIM.
只是为了尝试输入错误的凭据,我得到401 Unauthorized
.
有人可以帮忙吗?谢谢。