更新时间:2017-07-05 15:39
查询app列表及基本信息
名称 | 类型 | 是否必须 | 描述 |
---|---|---|---|
Action | String | 是 | 操作接口名,系统规定参数,取值:DescribeAppAttributes |
AppId | Long | 否 | App的编号 |
PageSize | Integer | 否 | 指定分页查询时每页行数,最大值100,默认值为10 |
PageNumber | Integer | 否 | 指定要查询的页码,默认是1,起始是1 |
名称 | 类型 | 描述 |
---|---|---|
RequestId | String | 本次请求编号 |
TotalCount | Integer | 返回结果的总条数 |
PageNumber | Integer | 返回指定的页码 |
PageSize | Integer | 返回指定的每页条数 |
Apps | AppAttribute | 由 AppAttribute 组成的数组格式,返回app的信息 |
https://apigateway.cn-qingdao.aliyuncs.com/?Action=DescribeAppAttributes
&AppId=20112314518278
&pageSize=10
&pageNumber=1
&<公共请求参数>
XML
格式
<DescribeAppAttributesResponse>
<RequestId>CEF72CEB-54B6-4AE8-B225-F876FF7BZ015</RequestId>
<TotalCount>1</TotalCount>
<PageSize>10</PageSize>
<PageNumber>1</PageNumber>
<Apps>
<AppAttribute>
<AppId>20112314518278</AppId>
<AppName>CreateApptest</AppName>
<Description>App test</Description>
<CreatedTime>2016-07-31T04:10:19Z</CreatedTime>
<ModifiedTime>2016-07-31T04:10:19Z</ModifiedTime>
</AppAttribute>
</Apps>
</DescribeAppAttributesResponse>
JSON
格式
{
"TotalCount":1,
"PageSize":10,
"PageNumber":1,
"RequestId":"8883AC74-259D-4C0B-99FC-0B7F9A588B2F",
"Apps":
{
"AppAttribute":
[
{
"AppId":20112314518278,
"AppName":"CreateApptest",
"Description":"App test",
"CreatedTime":"2016-07-31T04:10:19Z",
"ModifiedTime":"2016-07-31T04:10:19Z"
}
]
}
}
在文档使用中是否遇到以下问题
更多建议
匿名提交