TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LogisticsTaowaiMsgSendRequest req = new LogisticsTaowaiMsgSendRequest();
LogisticsTaowaiMsgSendRequest.TaowaiMsgSendRequest obj1 = new LogisticsTaowaiMsgSendRequest.TaowaiMsgSendRequest();
obj1.setCpCode("ZTO");
obj1.setMailNo("78637917732601");
obj1.setOccurTime(1669622596000L);
obj1.setExtParams("{ \"supportHomeArrived\": \"true\", }");
obj1.setOpenid("XXXX");
obj1.setLogisticsStatus("TRANSPORT");
obj1.setScene(1L);
obj1.setMobilePhone("13374890278");
req.setTaowaiMsgSendRequest(obj1);
LogisticsTaowaiMsgSendResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
LogisticsTaowaiMsgSendRequest req = new LogisticsTaowaiMsgSendRequest();
LogisticsTaowaiMsgSendRequest.TaowaiMsgSendRequestDomain obj1 = new LogisticsTaowaiMsgSendRequest.TaowaiMsgSendRequestDomain();
obj1.CpCode = "ZTO";
obj1.MailNo = "78637917732601";
obj1.OccurTime = 1669622596000L;
obj1.ExtParams = "{ \"supportHomeArrived\": \"true\", }";
obj1.Openid = "XXXX";
obj1.LogisticsStatus = "TRANSPORT";
obj1.Scene = 1L;
obj1.MobilePhone = "13374890278";
req.TaowaiMsgSendRequest_ = obj1;
LogisticsTaowaiMsgSendResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new LogisticsTaowaiMsgSendRequest;
$taowai_msg_send_request = new TaowaiMsgSendRequest;
$taowai_msg_send_request->cp_code="ZTO";
$taowai_msg_send_request->mail_no="78637917732601";
$taowai_msg_send_request->occur_time="1669622596000";
$taowai_msg_send_request->ext_params="{ \"supportHomeArrived\": \"true\", }";
$taowai_msg_send_request->openid="XXXX";
$taowai_msg_send_request->logistics_status="TRANSPORT";
$taowai_msg_send_request->scene="1";
$taowai_msg_send_request->mobile_phone="13374890278";
$req->setTaowaiMsgSendRequest(json_encode($taowai_msg_send_request));
$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.logistics.taowai.msg.send' \
-d 'partner_id=apidoc' \
-d 'sign=0241828893CCEDBEBF1E4885DFF64589' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-29+17%3A38%3A28' \
-d 'v=2.0' \
-d 'taowai_msg_send_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.LogisticsTaowaiMsgSendRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.taowai_msg_send_request="数据结构示例JSON格式"
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.logistics.taowai.msg.send");
add_param(pRequest,"taowai_msg_send_request","数据结构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('taobao.logistics.taowai.msg.send', {
'taowai_msg_send_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})