TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
FsTradeBuyerHistoryItemsQueryRequest req = new FsTradeBuyerHistoryItemsQueryRequest();
FsTradeBuyerHistoryItemsQueryRequest.BuyerShoppingHistoryItemReq obj1 = new FsTradeBuyerHistoryItemsQueryRequest.BuyerShoppingHistoryItemReq();
obj1.setPageNo(1L);
obj1.setPageSize(100L);
req.setBuyerShoppingHistoryItemReq(obj1);
FsTradeBuyerHistoryItemsQueryResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
FsTradeBuyerHistoryItemsQueryRequest req = new FsTradeBuyerHistoryItemsQueryRequest();
FsTradeBuyerHistoryItemsQueryRequest.BuyerShoppingHistoryItemReqDomain obj1 = new FsTradeBuyerHistoryItemsQueryRequest.BuyerShoppingHistoryItemReqDomain();
obj1.PageNo = 1L;
obj1.PageSize = 100L;
req.BuyerShoppingHistoryItemReq_ = obj1;
FsTradeBuyerHistoryItemsQueryResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new FsTradeBuyerHistoryItemsQueryRequest;
$buyer_shopping_history_item_req = new BuyerShoppingHistoryItemReq;
$buyer_shopping_history_item_req->page_no="1";
$buyer_shopping_history_item_req->page_size="100";
$req->setBuyerShoppingHistoryItemReq(json_encode($buyer_shopping_history_item_req));
$resp = $c->execute($req, $sessionKey);
curl -X POST 'http://gw.api.taobao.com/router/rest' \
-H 'Content-Type:application/x-www-form-urlencoded;charset=utf-8' \
-d 'app_key=12129701' \
-d 'format=json' \
-d 'method=taobao.fs.trade.buyer.history.items.query' \
-d 'partner_id=apidoc' \
-d 'session=12e416dd-5238-4003-91b3-b0dca9f4f006' \
-d 'sign=185C1FA9C6A46F900DD68610053C4D66' \
-d 'sign_method=hmac' \
-d 'timestamp=2026-04-04+13%3A26%3A01' \
-d 'v=2.0' \
-d 'buyer_shopping_history_item_req=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.FsTradeBuyerHistoryItemsQueryRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.buyer_shopping_history_item_req="数据结构示例JSON格式"
try:
resp= req.getResponse(sessionkey)
print(resp)
except Exception,e:
print(e)
pTopRequest pRequest = alloc_top_request();
pTopResponse pResponse = NULL;
pTaobaoClient pClient = alloc_taobao_client(url, appkey, appsecret);
set_api_name(pRequest,"taobao.fs.trade.buyer.history.items.query");
add_param(pRequest,"buyer_shopping_history_item_req","数据结构JSON示例");
pResponse = top_execute(pClient,pRequest,sessionKey);
printf("ret code:%d\n",pResponse->code);
if(pResponse->code == 0){
pTopResponseIterator ite = init_response_iterator(pResponse);
pResultItem pResultItem = alloc_result_item();
while(parseNext(ite, pResultItem) == 0){
printf("%s:%s\n",pResultItem->key,pResultItem->value);
}
destroy_response_iterator(ite);
destroy_result_item(pResultItem);
}
destroy_top_request(pRequest);
destroy_top_response(pResponse);
destroy_taobao_client(pClient);
TopClient = require('./topClient').TopClient;
var client = new TopClient({
'appkey': 'appkey',
'appsecret': 'secret',
'url': 'http://gw.api.taobao.com/router/rest'
});
client.execute('taobao.fs.trade.buyer.history.items.query', {
'buyer_shopping_history_item_req':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})