文档中心 > API类目 > 书旗内容文巢

alibaba.shuqi.algorithm.config.app.list (app列表)

app列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
app_name String 可选 "" app_name
page_size Number 必须 1 page_size
page_num Number 必须 1 page_num

响应参数

名称 类型 示例值 描述
data AppListResp 返回数据
  • └ total
  • Number
  • 0
  • 总条数
  • app_list
  • AppList []
  • AppList
  • └ gmt_modified
  • String
  • ""
  • gmt_modified
  • └ app_name
  • String
  • ""
  • app_name
  • └ app_id
  • Number
  • 0
  • app_id
  • └ gmt_create
  • String
  • ""
  • gmt_create
  • └ operator
  • String
  • ""
  • operator
message String "" 返回信息
status Number 0 返回状态码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaShuqiAlgorithmConfigAppListRequest req = new AlibabaShuqiAlgorithmConfigAppListRequest();
req.setAppName("\"\"");
req.setPageSize(1L);
req.setPageNum(1L);
AlibabaShuqiAlgorithmConfigAppListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_shuqi_algorithm_config_app_list_response>
    <data>
        <total>0</total>
        <app_list>
            <app_list>
                <gmt_modified>&quot;&quot;</gmt_modified>
                <app_name>&quot;&quot;</app_name>
                <app_id>0</app_id>
                <gmt_create>&quot;&quot;</gmt_create>
                <operator>&quot;&quot;</operator>
            </app_list>
        </app_list>
    </data>
    <message>&quot;&quot;</message>
    <status>0</status>
</alibaba_shuqi_algorithm_config_app_list_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部