TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSolutionFeedListGetRequest req = new AliexpressSolutionFeedListGetRequest();
req.setCurrentPage(2L);
req.setFeedType("PRODUCT_CREATE");
req.setPageSize(50L);
req.setStatus("FINISH");
req.setSubmittedTimeEnd("2020-11-12 06:00:00");
req.setSubmittedTimeStart("2020-11-01 02:00:00");
AliexpressSolutionFeedListGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AliexpressSolutionFeedListGetRequest req = new AliexpressSolutionFeedListGetRequest();
req.CurrentPage = 2L;
req.FeedType = "PRODUCT_CREATE";
req.PageSize = 50L;
req.Status = "FINISH";
req.SubmittedTimeEnd = "2020-11-12 06:00:00";
req.SubmittedTimeStart = "2020-11-01 02:00:00";
AliexpressSolutionFeedListGetResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AliexpressSolutionFeedListGetRequest;
$req->setCurrentPage("2");
$req->setFeedType("PRODUCT_CREATE");
$req->setPageSize("50");
$req->setStatus("FINISH");
$req->setSubmittedTimeEnd("2020-11-12 06:00:00");
$req->setSubmittedTimeStart("2020-11-01 02:00:00");
$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=aliexpress.solution.feed.list.get' \
-d 'partner_id=apidoc' \
-d 'session=47336241-dd68-48ab-9c85-37bf262e70e7' \
-d 'sign=B9102D31D13A509C7A51664EACEDCB55' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-02+13%3A13%3A15' \
-d 'v=2.0' \
-d 'current_page=2' \
-d 'feed_type=PRODUCT_CREATE' \
-d 'page_size=50' \
-d 'status=FINISH' \
-d 'submitted_time_end=2020-11-12+06%3A00%3A00' \
-d 'submitted_time_start=2020-11-01+02%3A00%3A00'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AliexpressSolutionFeedListGetRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.current_page=2
req.feed_type="PRODUCT_CREATE"
req.page_size=50
req.status="FINISH"
req.submitted_time_end="2020-11-12 06:00:00"
req.submitted_time_start="2020-11-01 02:00:00"
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,"aliexpress.solution.feed.list.get");
add_param(pRequest,"current_page","2");
add_param(pRequest,"feed_type","PRODUCT_CREATE");
add_param(pRequest,"page_size","50");
add_param(pRequest,"status","FINISH");
add_param(pRequest,"submitted_time_end","2020-11-12 06:00:00");
add_param(pRequest,"submitted_time_start","2020-11-01 02:00:00");
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',
'REST_URL': 'http://gw.api.taobao.com/router/rest'
});
client.execute('aliexpress.solution.feed.list.get', {
'current_page':'2',
'feed_type':'PRODUCT_CREATE',
'page_size':'50',
'status':'FINISH',
'submitted_time_end':'2020-11-12 06:00:00',
'submitted_time_start':'2020-11-01 02:00:00'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})