繁体   English   中英

在帐户恢复 API 中查找用于 6.0.0 版本的 WSO2 身份服务器的 SOAP API 的替换

[英]Finding the replacement of the SOAP APIs for WSO2 identity server for 6.0.0 version in Account recovery API

作为 WSO2 身份服务器 6.0.0 的一部分,SOAP API 已弃用,建议使用基于 REST 的 API。 We are using RemoteUserStoreManagerService.wsdl and UserIdentityManagementAdminService.wsdl SOAP APIs in our project, and want to replace the SOAP APIs with recommended REST APIs. Can you help us to find the list of REST APIs to replace RemoteUserStoreManagerService.wsdl and UserIdentityManagementAdminService.wsdl SOAP APIs. API 文档不清楚。

We need a replacement for the reset-password API, among the APIs provided in the https://is.docs.wso2.com/en/6.0.0/apis/restapis/account-recovery.yaml there isn't an API可以在用户已经登录系统时重置密码。 我们有 /set-password API,它依赖于 /recover-password API。 从 /recover-password 收到的密钥用于/set-password 是否有可用的 API 可以帮助用户在已经知道旧密码的情况下重置密码,只需要使用其他密码重置即可。

您可以调用SCIM2 Me 端点(https://localhost:9443/scim2/Me) PATCH 操作来更新密码。

使用登录用户的凭据对请求进行身份验证。

{
    "Operations": [
        {
            "op": "replace",
            "value": {
                "password": "newpassword"
            }
        }
    ],
    "schemas": [
        "urn:ietf:params:scim:api:messages:2.0:PatchOp"
    ]
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM