Wso2 WS02 AM-以编程方式获取客户端ID和客户端机密

Wso2 WS02 AM-以编程方式获取客户端ID和客户端机密,wso2,wso2-am,Wso2,Wso2 Am,我一直在查看文档等,发现了curl请求 curl -X POST -H "Authorization: Basic YWRtaW46YWRtaW4=" -H "Content-Type: application/json" -d @payload.json http://localhost:9763/client-registration/v0.9/register 使用给定的json负载 { "callbackUrl": "www.google.lk", "clientName": "res

我一直在查看文档等,发现了curl请求

curl -X POST -H "Authorization: Basic YWRtaW46YWRtaW4=" -H "Content-Type: application/json" -d @payload.json http://localhost:9763/client-registration/v0.9/register
使用给定的json负载

{
"callbackUrl": "www.google.lk",
"clientName": "rest_api_store",
"tokenScope": "Production",
"owner": "admin",
"grantType": "password refresh_token",
"saasApp": true
}

我的问题是,我在哪里可以找到我现有API/应用程序的clientName


谢谢

您可以使用OAutAdminService管理服务获取应用程序相关数据

https://localhost:9443/services/OAuthAdminService?wsdl 
您可以通过在carbon.xml文件中将following设置为false来查看wsdl文件

<HideAdminServiceWSDLs>false</HideAdminServiceWSDLs>
false