其他分享
首页 > 其他分享> > NC65 Restful API 调用

NC65 Restful API 调用

作者:互联网

1、查看己启用的rest接口

访问 http://127.0.0.1/uapws/restmanage 可查看所有己部署的rest接口

NC65 Restful API 调用

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"
}

标签:0.1,uap,xxx,uapws,rest,API,接口,NC65,Restful
来源: https://blog.51cto.com/dusthunter/2765719