TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressSocialCartProductsRequest req = new AliexpressSocialCartProductsRequest();
req.setShipToCountry("RU");
req.setCurrency("RUB");
req.setLocale("ru_RU");
req.setClientType("AE_VK_SERVICE.IOS");
AliexpressSocialCartProductsResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AliexpressSocialCartProductsRequest req = new AliexpressSocialCartProductsRequest();
req.ShipToCountry = "RU";
req.Currency = "RUB";
req.Locale = "ru_RU";
req.ClientType = "AE_VK_SERVICE.IOS";
AliexpressSocialCartProductsResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AliexpressSocialCartProductsRequest;
$req->setShipToCountry("RU");
$req->setCurrency("RUB");
$req->setLocale("ru_RU");
$req->setClientType("AE_VK_SERVICE.IOS");
$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.social.cart.products' \
-d 'partner_id=apidoc' \
-d 'session=40f5f0fe-7846-4c49-87bb-e85849a45fd9' \
-d 'sign=436B7779CB779847E4064F378DC3C4CF' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-25+19%3A54%3A58' \
-d 'v=2.0' \
-d 'client_type=AE_VK_SERVICE.IOS' \
-d 'currency=RUB' \
-d 'locale=ru_RU' \
-d 'ship_to_country=RU'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AliexpressSocialCartProductsRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.ship_to_country="RU"
req.currency="RUB"
req.locale="ru_RU"
req.client_type="AE_VK_SERVICE.IOS"
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.social.cart.products");
add_param(pRequest,"ship_to_country","RU");
add_param(pRequest,"currency","RUB");
add_param(pRequest,"locale","ru_RU");
add_param(pRequest,"client_type","AE_VK_SERVICE.IOS");
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.social.cart.products', {
'ship_to_country':'RU',
'currency':'RUB',
'locale':'ru_RU',
'client_type':'AE_VK_SERVICE.IOS'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})