TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaTcLogisticsDmsDelivererLocationsReportRequest req = new AlibabaTcLogisticsDmsDelivererLocationsReportRequest();
List<AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParam> list2 = new ArrayList<AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParam>();
AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParam obj3 = new AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParam();
list2.add(obj3);
obj3.setCollectTime(StringUtils.parseDateTime("2021-10-01 10:00:00"));
obj3.setLatitude("40.039115");
obj3.setLongitude("116.307892");
obj3.setOutDelivererId("1689432");
req.setLocations(list2);
AlibabaTcLogisticsDmsDelivererLocationsReportResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaTcLogisticsDmsDelivererLocationsReportRequest req = new AlibabaTcLogisticsDmsDelivererLocationsReportRequest();
List<AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParamDomain> list2 = new List<AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParamDomain>();
AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParamDomain obj3 = new AlibabaTcLogisticsDmsDelivererLocationsReportRequest.DelivererLocationReportParamDomain();
list2.Add(obj3);
obj3.CollectTime = DateTime.Parse(2021-10-01 10:00:00");
obj3.Latitude = "40.039115";
obj3.Longitude = "116.307892";
obj3.OutDelivererId = "1689432";
req.Locations_ = list2;
AlibabaTcLogisticsDmsDelivererLocationsReportResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaTcLogisticsDmsDelivererLocationsReportRequest;
$locations = new DelivererLocationReportParam;
$locations->collect_time="2021-10-01 10:00:00";
$locations->latitude="40.039115";
$locations->longitude="116.307892";
$locations->out_deliverer_id="1689432";
$req->setLocations(json_encode($locations));
$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.tc.logistics.dms.deliverer.locations.report' \
-d 'partner_id=apidoc' \
-d 'sign=BC0F957F0FADEE294B1948EADC305BBD' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-01+05%3A55%3A14' \
-d 'v=2.0' \
-d 'locations=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaTcLogisticsDmsDelivererLocationsReportRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.locations=""
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.tc.logistics.dms.deliverer.locations.report");
add_param(pRequest,"locations","数据结构JSON示例");
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.tc.logistics.dms.deliverer.locations.report', {
'locations':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})