websoft9/appmanage/docs/developer.md
2023-04-10 14:25:10 +08:00

46 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## API结构
### 请求
### 请求头(公共参数)
| 参数名称 | 用途 |类型 |必要性 |
| ------ | --------------------------------------------- | ------ |------ |
| Version | appmanae接口版本 | string |必须 |
| Language | 接口显示语言 | string |必须 |
> 接口调用安全验证通过nginx
### 请求主体
[各个接口业务参数](#API接口说明)
### 响应结果
### 响应头(公共参数)
|返回参数 | 用途 |类型 |必要性 |
| ------ | --------------------------------------------- | ------ |------ |
| HTTP状态码 | 判断接口调用是否成功200或404 | Integer |必须 |
### 响应主体
|返回参数 | 用途 |类型 |必要性 |
| ------ | --------------------------------------------- | ------ |------ |
| error | 错误code和错误信息 | object | 非必须 ,无错误时不返回 |
| responseData | 各个接口的业务数据 | object |必须 |
```
{
"ResponseData": {
"Error": {
"Code": "AuthFailure.SignatureFailure",
"Message": "The provided credentials could not be validated. Please check your signature is correct."
}
}
```
## API接口说明
### app 列表查询接口