TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaPicturesDengtaImsDouyinAccountChangedRequest req = new AlibabaPicturesDengtaImsDouyinAccountChangedRequest();
req.setAccountIds("123");
req.setAccountType(1L);
req.setChangeType(1L);
AlibabaPicturesDengtaImsDouyinAccountChangedResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaPicturesDengtaImsDouyinAccountChangedRequest req = new AlibabaPicturesDengtaImsDouyinAccountChangedRequest();
req.AccountIds = "123";
req.AccountType = 1L;
req.ChangeType = 1L;
AlibabaPicturesDengtaImsDouyinAccountChangedResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaPicturesDengtaImsDouyinAccountChangedRequest;
$req->setAccountIds("123");
$req->setAccountType("1");
$req->setChangeType("1");
$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.pictures.dengta.ims.douyin.account.changed' \
-d 'partner_id=apidoc' \
-d 'sign=EB1759DF68926E806A53BE95FF9705AA' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-30+12%3A44%3A22' \
-d 'v=2.0' \
-d 'account_ids=123' \
-d 'account_type=1' \
-d 'change_type=1'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaPicturesDengtaImsDouyinAccountChangedRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.account_ids="123"
req.account_type=1
req.change_type=1
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.pictures.dengta.ims.douyin.account.changed");
add_param(pRequest,"account_ids","123");
add_param(pRequest,"account_type","1");
add_param(pRequest,"change_type","1");
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.pictures.dengta.ims.douyin.account.changed', {
'account_ids':'123',
'account_type':'1',
'change_type':'1'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})