TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
CainiaoEndpointLockerTopAuthcodeResendanycpRequest req = new CainiaoEndpointLockerTopAuthcodeResendanycpRequest();
req.setPackageId("123212");
req.setUserId(4398046996756L);
req.setSessionCode("1321312");
req.setStationId(1231L);
CainiaoEndpointLockerTopAuthcodeResendanycpResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
CainiaoEndpointLockerTopAuthcodeResendanycpRequest req = new CainiaoEndpointLockerTopAuthcodeResendanycpRequest();
req.PackageId = "123212";
req.UserId = 4398046996756L;
req.SessionCode = "1321312";
req.StationId = 1231L;
CainiaoEndpointLockerTopAuthcodeResendanycpResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new CainiaoEndpointLockerTopAuthcodeResendanycpRequest;
$req->setPackageId("123212");
$req->setUserId("4398046996756");
$req->setSessionCode("1321312");
$req->setStationId("1231");
$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=cainiao.endpoint.locker.top.authcode.resendanycp' \
-d 'partner_id=apidoc' \
-d 'sign=8EFF33D567938165DC095D1AFF085972' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-25+18%3A37%3A50' \
-d 'v=2.0' \
-d 'package_id=123212' \
-d 'session_code=1321312' \
-d 'station_id=1231' \
-d 'user_id=4398046996756'
# -*- coding: utf-8 -*-
import top.api
req=top.api.CainiaoEndpointLockerTopAuthcodeResendanycpRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.package_id="123212"
req.user_id=4398046996756
req.session_code="1321312"
req.station_id=1231
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,"cainiao.endpoint.locker.top.authcode.resendanycp");
add_param(pRequest,"package_id","123212");
add_param(pRequest,"user_id","4398046996756");
add_param(pRequest,"session_code","1321312");
add_param(pRequest,"station_id","1231");
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('cainiao.endpoint.locker.top.authcode.resendanycp', {
'package_id':'123212',
'user_id':'4398046996756',
'session_code':'1321312',
'station_id':'1231'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})