TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
UsceslBizLightUpRequest req = new UsceslBizLightUpRequest();
req.setEslBarCode("112233445566");
req.setLedColor("2");
req.setLightUpTime(10L);
req.setStoreId(123456L);
req.setBizBrandKey("123456");
UsceslBizLightUpResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
UsceslBizLightUpRequest req = new UsceslBizLightUpRequest();
req.EslBarCode = "112233445566";
req.LedColor = "2";
req.LightUpTime = 10L;
req.StoreId = 123456L;
req.BizBrandKey = "123456";
UsceslBizLightUpResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new UsceslBizLightUpRequest;
$req->setEslBarCode("112233445566");
$req->setLedColor("2");
$req->setLightUpTime("10");
$req->setStoreId("123456");
$req->setBizBrandKey("123456");
$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=taobao.uscesl.biz.light.up' \
-d 'partner_id=apidoc' \
-d 'sign=1FE92BCFDC20F8E5B29B74DE070CC42E' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-08+03%3A13%3A54' \
-d 'v=2.0' \
-d 'biz_brand_key=123456' \
-d 'esl_bar_code=112233445566' \
-d 'led_color=2' \
-d 'light_up_time=10' \
-d 'store_id=123456'
# -*- coding: utf-8 -*-
import top.api
req=top.api.UsceslBizLightUpRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.esl_bar_code="112233445566"
req.led_color="2"
req.light_up_time=10
req.store_id=123456
req.biz_brand_key="123456"
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,"taobao.uscesl.biz.light.up");
add_param(pRequest,"esl_bar_code","112233445566");
add_param(pRequest,"led_color","2");
add_param(pRequest,"light_up_time","10");
add_param(pRequest,"store_id","123456");
add_param(pRequest,"biz_brand_key","123456");
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('taobao.uscesl.biz.light.up', {
'esl_bar_code':'112233445566',
'led_color':'2',
'light_up_time':'10',
'store_id':'123456',
'biz_brand_key':'123456'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})