登录
退出
首页
开放版图
苏宁有货
商家后台
文档中心
文档中心
API文档
消息中心
平台公告
工单
我的工单
提交工单
控制台
SDK调用示例
suning.custom.batchorder.query/
调用示例(JAVA)
复制全部代码
import com.suning.api.entity.custom.BatchorderQueryRequest; import com.suning.api.entity.custom.BatchorderQueryResponse; BatchorderQueryRequest request = new BatchorderQueryRequest(); request.setEndTime("2014-05-01 23:59:59"); request.setOrderStatus("40"); request.setPageNo("1"); request.setPageSize("20"); request.setStartTime("2014-05-01 23:59:59"); //api入参校验逻辑开关,当测试稳定之后建议设置为 false 或者删除该行 request.setCheckParam(true); String serverUrl = "https://openpre.cnsuning.com/api/http/sopRequest"; String appKey = "你的appKey"; String appSecret = "你的appSecret"; DefaultSuningClient client = new DefaultSuningClient(serverUrl, appKey,appSecret, "json"); try { BatchorderQueryResponse response = client.excute(request); System.out.println("返回json/xml格式数据 :" + response.getBody()); } catch (SuningApiException e) { e.printStackTrace(); }
调用示例(PHP)
复制全部代码
$req = new BatchorderQueryRequest(); $req -> setEndTime("2014-05-01 23:59:59"); $req -> setOrderStatus("40"); $req -> setPageNo("1"); $req -> setPageSize("20"); $req -> setStartTime("2014-05-01 23:59:59"); //api入参校验逻辑开关,当测试稳定之后建议设置为 false 或者删除该行 $req -> setCheckParam('true'); $serverUrl = "https://openpre.cnsuning.com/api/http/sopRequest"; $appKey = "你的appKey"; $appSecret = "你的appSecret"; $client = new DefaultSuningClient($serverUrl,$appKey,$appSecret,'json'); $resp = $client -> execute($req); print_r("返回响应报文:".$resp);
调用示例(.NET)
复制全部代码
using suning_api_sdk.BizRequest.CustomCustomRequest; using suning_api_sdk.BizResponse.CustomCustomResponse; using suning_api_sdk.Models.CustomCustomModel; BatchorderQueryRequest request = new BatchorderQueryRequest(); request.endTime="2014-05-01 23:59:59"; request.orderStatus="40"; request.pageNo="1"; request.pageSize="20"; request.startTime="2014-05-01 23:59:59"; //开启日志调试,当测试稳定之后建议设置为 false 或者删除该行 SuningLogger.IsLogDebug = true; string serverUrl = "https://openpre.cnsuning.com/api/http/sopRequest"; string appKey = "你的appKey"; string appSecret = "你的appSecret"; ISuningClient client = new DefaultSuningClient(serverUrl, appKey,appSecret); BatchorderQueryResponse response = client.Execute(request);
调用示例(PYTHON)
复制全部代码
# -*- coding: utf-8 -*- import suning.api request = suning.api.custom.BatchorderQueryRequest() request.endTime="2014-05-01 23:59:59"; request.orderStatus="40"; request.pageNo="1"; request.pageSize="20"; request.startTime="2014-05-01 23:59:59"; domain = "https://openpre.cnsuning.com" appKey = "你的appKey" appSecret = "你的appSecret" request.setDomainInfo(domain,"80") request.setAppInfo(appKey,appSecret) try: result=request.getResponse() print(result) except Exception as e: print(e)