TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaPurCategoryCodeGetRequest req = new AlibabaPurCategoryCodeGetRequest();
req.setIsActive(true);
req.setOrgId("36822");
AlibabaPurCategoryCodeGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaPurCategoryCodeGetRequest req = new AlibabaPurCategoryCodeGetRequest();
req.IsActive = true;
req.OrgId = "36822";
AlibabaPurCategoryCodeGetResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaPurCategoryCodeGetRequest;
$req->setIsActive("true");
$req->setOrgId("36822");
$resp = $c->execute($req);
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=alibaba.pur.category.code.get' \
-d 'partner_id=apidoc' \
-d 'sign=50CDF8471E6F3D3C91C7680F81D60674' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-16+18%3A03%3A59' \
-d 'v=2.0' \
-d 'is_active=true' \
-d 'org_id=36822'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaPurCategoryCodeGetRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.is_active=true
req.org_id="36822"
try:
resp= req.getResponse()
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,"alibaba.pur.category.code.get");
add_param(pRequest,"is_active","true");
add_param(pRequest,"org_id","36822");
pResponse = top_execute(pClient,pRequest,NULL);
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('alibaba.pur.category.code.get', {
'is_active':'true',
'org_id':'36822'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})