文档中心 > API类目 > 斑马小程序

yunos.hongqioperate.apirequest (红旗支付宝H6预售小程序统一入口)

红旗支付宝H6预售小程序统一入口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
api_request MtopApiRequest 可选 请求参数
  • └ data
  • String
  • 必须
  • {"id":20230217}
  • 业务参数
  • └ module
  • String
  • 必须
  • activity
  • 模块名
  • └ action
  • String
  • 必须
  • detail
  • 接口名
  • └ version
  • String
  • 必须
  • 1.0
  • 版本号
  • └ token
  • String
  • 可选
  • eg
  • token

响应参数

名称 类型 示例值 描述
result ApiResponse 返回类
  • └ data
  • String
  • true
  • 返回数据
  • └ success
  • Boolean
  • true
  • 成功标识
  • └ err_code
  • String
  • 1001
  • 错误码
  • └ err_message
  • String
  • 错误信息
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
YunosHongqioperateApirequestRequest req = new YunosHongqioperateApirequestRequest();
YunosHongqioperateApirequestRequest.MtopApiRequest obj1 = new YunosHongqioperateApirequestRequest.MtopApiRequest();
obj1.setData("{\"id\":20230217}");
obj1.setModule("activity");
obj1.setAction("detail");
obj1.setVersion("1.0");
obj1.setToken("eg");
req.setApiRequest(obj1);
YunosHongqioperateApirequestResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<yunos_hongqioperate_apirequest_response>
    <result>
        <data>true</data>
        <success>true</success>
        <err_code>1001</err_code>
        <err_message>错误信息</err_message>
    </result>
</yunos_hongqioperate_apirequest_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

返回
顶部