TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
LogisticsFengchaoMsgSendRequest req = new LogisticsFengchaoMsgSendRequest();
LogisticsFengchaoMsgSendRequest.MsgSendRequest obj1 = new LogisticsFengchaoMsgSendRequest.MsgSendRequest();
obj1.setCpCode("ZTO");
obj1.setMailNo("78637917732601");
obj1.setOccurTime(1669622596000L);
obj1.setExtParams("{ \"stationName\":\"丰巢智能柜\", \"freeHour\":\"48\", \"priceByTimeText\":\"1元/2小时\", \"maxAmount\":\"36\" }");
obj1.setType(1L);
req.setMsgSendRequest(obj1);
LogisticsFengchaoMsgSendResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
LogisticsFengchaoMsgSendRequest req = new LogisticsFengchaoMsgSendRequest();
LogisticsFengchaoMsgSendRequest.MsgSendRequestDomain obj1 = new LogisticsFengchaoMsgSendRequest.MsgSendRequestDomain();
obj1.CpCode = "ZTO";
obj1.MailNo = "78637917732601";
obj1.OccurTime = 1669622596000L;
obj1.ExtParams = "{ \"stationName\":\"丰巢智能柜\", \"freeHour\":\"48\", \"priceByTimeText\":\"1元/2小时\", \"maxAmount\":\"36\" }";
obj1.Type = 1L;
req.MsgSendRequest_ = obj1;
LogisticsFengchaoMsgSendResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new LogisticsFengchaoMsgSendRequest;
$msg_send_request = new MsgSendRequest;
$msg_send_request->cp_code="ZTO";
$msg_send_request->mail_no="78637917732601";
$msg_send_request->occur_time="1669622596000";
$msg_send_request->ext_params="{ \"stationName\":\"丰巢智能柜\", \"freeHour\":\"48\", \"priceByTimeText\":\"1元/2小时\", \"maxAmount\":\"36\" }";
$msg_send_request->type="1";
$req->setMsgSendRequest(json_encode($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.fengchao.msg.send' \
-d 'partner_id=apidoc' \
-d 'sign=FA419B8B53059EEF095BD7582231C08B' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-05-29+17%3A33%3A13' \
-d 'v=2.0' \
-d 'msg_send_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.LogisticsFengchaoMsgSendRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.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.fengchao.msg.send");
add_param(pRequest,"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.fengchao.msg.send', {
'msg_send_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})