超图FAQ: 有2种方法:
1.可以访问http://localhost:8090/iserver/services/security/profile 直接修改密码
2.可以通过rest API中发put请求,请求地址
http://localhost:8090/iserver/services/security/profile.json?oldPassword=123456
(123456为旧密码)
请求体为:
{
"name":"p1",
"password":"supermap"
}
当返回{"succeed":true}表示返回成功。