GET https://[endpoint].ctapi.ctyun.cn/v1/api/mqttUserAclList
URI参数说明:
参数名 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|
prodInstId | String | 是 | 实例ID |
userName | String | 是 | 认证用户 |
返回参数说明:
参数名 | 参数类型 | 参数描述 |
---|---|---|
statusCode | Integer | 800-成功 其他失败 |
message | String | 描述状态 |
returnObj | Object | 返回对象 |
returnObj.allow | String | allow 动作权限 true false |
returnObj.topic | String | 主题 |
returnObj.action | String | action 动作 pub、sub、pubsub |
returnObj.login | String | 认证用户 |
返回示例:成功
{"statusCode": 200,"message": "success","returnObj": [{"allow": true,"topic": "#","action": "pubsub","login": "test"}]} |
---|
返回示例:失败
{"returnObj": null,"message": "error","statusCode": "900"} |
---|