TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlitripBtripFlightDistributionOrderNewpayRequest req = new AlitripBtripFlightDistributionOrderNewpayRequest();
AlitripBtripFlightDistributionOrderNewpayRequest.BtripFlightPayOrderRq obj1 = new AlitripBtripFlightDistributionOrderNewpayRequest.BtripFlightPayOrderRq();
obj1.setDisOrderId("jianhang123");
obj1.setTotalPayPrice(2000L);
obj1.setCorpPayPrice(1000L);
obj1.setPersonalPayPrice(1000L);
obj1.setExtra("{}");
obj1.setSubChannel("jianhang");
req.setParamBtripFlightPayOrderRq(obj1);
AlitripBtripFlightDistributionOrderNewpayResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlitripBtripFlightDistributionOrderNewpayRequest req = new AlitripBtripFlightDistributionOrderNewpayRequest();
AlitripBtripFlightDistributionOrderNewpayRequest.BtripFlightPayOrderRqDomain obj1 = new AlitripBtripFlightDistributionOrderNewpayRequest.BtripFlightPayOrderRqDomain();
obj1.DisOrderId = "jianhang123";
obj1.TotalPayPrice = 2000L;
obj1.CorpPayPrice = 1000L;
obj1.PersonalPayPrice = 1000L;
obj1.Extra = "{}";
obj1.SubChannel = "jianhang";
req.ParamBtripFlightPayOrderRq_ = obj1;
AlitripBtripFlightDistributionOrderNewpayResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlitripBtripFlightDistributionOrderNewpayRequest;
$param_btrip_flight_pay_order_rq = new BtripFlightPayOrderRq;
$param_btrip_flight_pay_order_rq->dis_order_id="jianhang123";
$param_btrip_flight_pay_order_rq->total_pay_price="2000";
$param_btrip_flight_pay_order_rq->corp_pay_price="1000";
$param_btrip_flight_pay_order_rq->personal_pay_price="1000";
$param_btrip_flight_pay_order_rq->extra="{}";
$param_btrip_flight_pay_order_rq->sub_channel="jianhang";
$req->setParamBtripFlightPayOrderRq(json_encode($param_btrip_flight_pay_order_rq));
$resp = $c->execute($req, $sessionKey);
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=alitrip.btrip.flight.distribution.order.newpay' \
-d 'partner_id=apidoc' \
-d 'session=f56165b9-d487-46be-830f-6b6120dba0f4' \
-d 'sign=376BC3B143F8176BDA702F52A3510B33' \
-d 'sign_method=hmac' \
-d 'timestamp=2024-11-21+19%3A49%3A23' \
-d 'v=2.0' \
-d 'param_btrip_flight_pay_order_rq=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlitripBtripFlightDistributionOrderNewpayRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.param_btrip_flight_pay_order_rq="数据结构示例JSON格式"
try:
resp= req.getResponse(sessionkey)
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,"alitrip.btrip.flight.distribution.order.newpay");
add_param(pRequest,"param_btrip_flight_pay_order_rq","数据结构JSON示例");
pResponse = top_execute(pClient,pRequest,sessionKey);
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('alitrip.btrip.flight.distribution.order.newpay', {
'param_btrip_flight_pay_order_rq':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})