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

alibaba.shuqi.content.backend.rivalstatis.querydatas (通用查询)

通用查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
query_map Json 可选 {1:"a"} 查询queryCode,
emp_id String 可选 1 员工工号
date_ym String 可选 1 数据归属日期
source Number 可选 1 数据归属竞对

响应参数

名称 类型 示例值 描述
data String 1 返回数据
state Number 1 状态码
message String 1 返回信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaShuqiContentBackendRivalstatisQuerydatasRequest req = new AlibabaShuqiContentBackendRivalstatisQuerydatasRequest();
req.setQueryMapString("{1:\"a\"}");
req.setEmpId("1");
req.setDateYm("1");
req.setSource(1L);
AlibabaShuqiContentBackendRivalstatisQuerydatasResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_shuqi_content_backend_rivalstatis_querydatas_response>
    <data>1</data>
    <state>1</state>
    <message>1</message>
</alibaba_shuqi_content_backend_rivalstatis_querydatas_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

返回
顶部