TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaAlihealthFollowupGroupQrcodeGetRequest req = new AlibabaAlihealthFollowupGroupQrcodeGetRequest();
AlibabaAlihealthFollowupGroupQrcodeGetRequest.FollowGroupQrCodeRequest obj1 = new AlibabaAlihealthFollowupGroupQrcodeGetRequest.FollowGroupQrCodeRequest();
obj1.setCorpId("1636873811356221");
obj1.setDoctorId("2034131106552037");
obj1.setPatientId("1110239233233421");
obj1.setGroupId("4321289588216940");
obj1.setDeptId("8276400030815722");
req.setRequest1(obj1);
req.setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
AlibabaAlihealthFollowupGroupQrcodeGetResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaAlihealthFollowupGroupQrcodeGetRequest req = new AlibabaAlihealthFollowupGroupQrcodeGetRequest();
AlibabaAlihealthFollowupGroupQrcodeGetRequest.FollowGroupQrCodeRequestDomain obj1 = new AlibabaAlihealthFollowupGroupQrcodeGetRequest.FollowGroupQrCodeRequestDomain();
obj1.CorpId = "1636873811356221";
obj1.DoctorId = "2034131106552037";
obj1.PatientId = "1110239233233421";
obj1.GroupId = "4321289588216940";
obj1.DeptId = "8276400030815722";
req.Request1_ = obj1;
req.AuthToken = "58ce78f5-bda1-4c49-94ce-5e5680adffa2";
AlibabaAlihealthFollowupGroupQrcodeGetResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaAlihealthFollowupGroupQrcodeGetRequest;
$request1 = new FollowGroupQrCodeRequest;
$request1->corp_id="1636873811356221";
$request1->doctor_id="2034131106552037";
$request1->patient_id="1110239233233421";
$request1->group_id="4321289588216940";
$request1->dept_id="8276400030815722";
$req->setRequest1(json_encode($request1));
$req->setAuthToken("58ce78f5-bda1-4c49-94ce-5e5680adffa2");
$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.group.qrcode.get' \
-d 'partner_id=apidoc' \
-d 'sign=1788FF9B2AC1FE24B1D202F79F0B3055' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-07-14+05%3A29%3A35' \
-d 'v=2.0' \
-d 'auth_token=58ce78f5-bda1-4c49-94ce-5e5680adffa2' \
-d 'request1=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaAlihealthFollowupGroupQrcodeGetRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.request1=""
req.auth_token="58ce78f5-bda1-4c49-94ce-5e5680adffa2"
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.group.qrcode.get");
add_param(pRequest,"request1","数据结构JSON示例");
add_param(pRequest,"auth_token","58ce78f5-bda1-4c49-94ce-5e5680adffa2");
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.group.qrcode.get', {
'request1':'数据结构JSON示例',
'auth_token':'58ce78f5-bda1-4c49-94ce-5e5680adffa2'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})