文档中心 > API类目 > 阿里影业云智API

taobao.lark.cinema.config.list (查询影城配置列表)

查询影城配置列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
cinema_req CinemaReq 必须 参数
  • └ cinema_link_id
  • String
  • 必须
  • 888889
  • 内码
  • └ key
  • String
  • 可选
  • key1
  • 具体key

响应参数

名称 类型 示例值 描述
result_code String 200 错误码
result Boolean true 结果
result_msg String 成功 信息
data Config [] 数据
  • └ key
  • String
  • key
  • key
  • └ name
  • String
  • 测试
  • 名称
  • └ value
  • String
  • 123
  • value
  • └ group
  • String
  • 默认组
  • └ cinema_link_id
  • String
  • 888889
  • 影城内码
  • └ config_level
  • String
  • 1
  • 1影城 3平台

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LarkCinemaConfigListRequest req = new LarkCinemaConfigListRequest();
LarkCinemaConfigListRequest.CinemaReq obj1 = new LarkCinemaConfigListRequest.CinemaReq();
obj1.setCinemaLinkId("888889");
obj1.setKey("key1");
req.setCinemaReq(obj1);
LarkCinemaConfigListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<lark_cinema_config_list_response>
    <result_code>200</result_code>
    <result>true</result>
    <result_msg>成功</result_msg>
    <data>
        <config>
            <key>key</key>
            <name>测试</name>
            <value>123</value>
            <group>默认组</group>
            <cinema_link_id>888889</cinema_link_id>
            <config_level>1</config_level>
        </config>
    </data>
</lark_cinema_config_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

返回
顶部