访问 http://127.0.0.1/uapws/restmanage 可查看所有己部署的rest接口
2、测试调用user_token接口
http://127.0.0.1/uapws/rest/user/login
Header 需添加sysconfig中配置的数据源信息:
uap_dataSource:XXXXX
Body 为json格式用户名及密码,密码为明文:
{
"usercode":"xxx",
"pwd":"xxx"
}
返回结果为json:
{
"uap_usercode": "xxx",
"uap_dataSource": "xxxxx",
"uap_token": "xxxxxxxxxxx"
}