TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupExamCommodityListRequest req = new AlibabaAlihealthFollowupExamCommodityListRequest();
req.setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
AlibabaAlihealthFollowupExamCommodityListRequest.FollowBaseRoleDo obj1 = new AlibabaAlihealthFollowupExamCommodityListRequest.FollowBaseRoleDo();
obj1.setCorpId(5355289320225080L);
obj1.setDoctorId(6225705334778570L);
req.setRequest1(obj1);
AlibabaAlihealthFollowupExamCommodityListResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaAlihealthFollowupExamCommodityListRequest req = new AlibabaAlihealthFollowupExamCommodityListRequest();
req.AuthToken = "58ce78f5-bda1-4c49-94ce-5e5680adffa2";
AlibabaAlihealthFollowupExamCommodityListRequest.FollowBaseRoleDoDomain obj1 = new AlibabaAlihealthFollowupExamCommodityListRequest.FollowBaseRoleDoDomain();
obj1.CorpId = 5355289320225080L;
obj1.DoctorId = 6225705334778570L;
req.Request1_ = obj1;
AlibabaAlihealthFollowupExamCommodityListResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaAlihealthFollowupExamCommodityListRequest;
$req->setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
$request1 = new FollowBaseRoleDo;
$request1->corp_id="5355289320225080";
$request1->doctor_id="6225705334778570";
$req->setRequest1(json_encode($request1));
$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.alihealth.followup.exam.commodity.list' \
-d 'partner_id=apidoc' \
-d 'sign=AFC0F0548B3E9CD35BC6A725DFE7E3CD' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-07-13+04%3A41%3A54' \
-d 'v=2.0' \
-d 'auth_token=58ce78f5-bda1-4c49-94ce-5e5680adffa2' \
-d 'request1=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaAlihealthFollowupExamCommodityListRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.auth_token="58ce78f5-bda1-4c49-94ce-5e5680adffa2"
req.request1=""
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.alihealth.followup.exam.commodity.list");
add_param(pRequest,"auth_token","58ce78f5-bda1-4c49-94ce-5e5680adffa2");
add_param(pRequest,"request1","数据结构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.alihealth.followup.exam.commodity.list', {
'auth_token':'58ce78f5-bda1-4c49-94ce-5e5680adffa2',
'request1':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})