TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
GuangguangContentTrialTriallistbyitemRequest req = new GuangguangContentTrialTriallistbyitemRequest();
GuangguangContentTrialTriallistbyitemRequest.TrialApplyListRequest obj1 = new GuangguangContentTrialTriallistbyitemRequest.TrialApplyListRequest();
obj1.setTab(0L);
obj1.setPageNo(1L);
obj1.setPageSize(5L);
obj1.setApplyIdList(new Long[] { 111,22 };
);
req.setTrialApplyListRequest(obj1);
GuangguangContentTrialTriallistbyitemResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
GuangguangContentTrialTriallistbyitemRequest req = new GuangguangContentTrialTriallistbyitemRequest();
GuangguangContentTrialTriallistbyitemRequest.TrialApplyListRequestDomain obj1 = new GuangguangContentTrialTriallistbyitemRequest.TrialApplyListRequestDomain();
obj1.Tab = 0L;
obj1.PageNo = 1L;
obj1.PageSize = 5L;
obj1.ApplyIdList = new long[] { 111,22 };
;
req.TrialApplyListRequest_ = obj1;
GuangguangContentTrialTriallistbyitemResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new GuangguangContentTrialTriallistbyitemRequest;
$trial_apply_list_request = new TrialApplyListRequest;
$trial_apply_list_request->tab="0";
$trial_apply_list_request->page_no="1";
$trial_apply_list_request->page_size="5";
$trial_apply_list_request->apply_id_list="111,22";
$req->setTrialApplyListRequest(json_encode($trial_apply_list_request));
$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=taobao.guangguang.content.trial.triallistbyitem' \
-d 'partner_id=apidoc' \
-d 'session=3fb79c0f-656c-4216-a9fa-fdc3ea188e30' \
-d 'sign=26BE63213A7629FC4DEFE4CBEB3590C6' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-01+12%3A35%3A16' \
-d 'v=2.0' \
-d 'trial_apply_list_request=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.GuangguangContentTrialTriallistbyitemRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.trial_apply_list_request="数据结构示例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,"taobao.guangguang.content.trial.triallistbyitem");
add_param(pRequest,"trial_apply_list_request","数据结构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('taobao.guangguang.content.trial.triallistbyitem', {
'trial_apply_list_request':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})