TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AccountlinkBindSyncRequest req = new AccountlinkBindSyncRequest();
List<AccountlinkBindSyncRequest.SyncBindDataRequest> list2 = new ArrayList<AccountlinkBindSyncRequest.SyncBindDataRequest>();
AccountlinkBindSyncRequest.SyncBindDataRequest obj3 = new AccountlinkBindSyncRequest.SyncBindDataRequest();
list2.add(obj3);
AccountlinkBindSyncRequest.BindDo obj5 = new AccountlinkBindSyncRequest.BindDo();
obj5.setExternalAccessToken("xxxxx");
obj5.setEid("xxxx");
obj5.setHid(123L);
list4.setBindDo(obj5);
obj3.setOperate(1L);
req.setParamList(list2);
AccountlinkBindSyncResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AccountlinkBindSyncRequest req = new AccountlinkBindSyncRequest();
List<AccountlinkBindSyncRequest.SyncBindDataRequestDomain> list2 = new List<AccountlinkBindSyncRequest.SyncBindDataRequestDomain>();
AccountlinkBindSyncRequest.SyncBindDataRequestDomain obj3 = new AccountlinkBindSyncRequest.SyncBindDataRequestDomain();
list2.Add(obj3);
AccountlinkBindSyncRequest.BindDoDomain obj4 = new AccountlinkBindSyncRequest.BindDoDomain();
obj4.ExternalAccessToken = "xxxxx";
obj4.Eid = "xxxx";
obj4.Hid = 123L;
obj3.BindDo= obj4;
obj3.Operate = 1L;
req.ParamList_ = list2;
AccountlinkBindSyncResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AccountlinkBindSyncRequest;
$param_list = new SyncBindDataRequest;
$bind_do = new BindDo;
$bind_do->external_access_token="xxxxx";
$bind_do->eid="xxxx";
$bind_do->hid="123";
$param_list->bind_do = $bind_do;
$param_list->operate="1";
$req->setParamList(json_encode($param_list));
$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.accountlink.bind.sync' \
-d 'partner_id=apidoc' \
-d 'sign=78BC3BC58EA5A4DA425D1372067C2348' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-06-10+10%3A09%3A21' \
-d 'v=2.0' \
-d 'param_list=null'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AccountlinkBindSyncRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.param_list=""
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.accountlink.bind.sync");
add_param(pRequest,"param_list","数据结构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.accountlink.bind.sync', {
'param_list':'数据结构JSON示例'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})