TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaSeakingFeedbackRequest req = new AlibabaSeakingFeedbackRequest();
req.setInvokeApiName("alibaba.seaking.imagetranslate");
req.setPlatform("ae");
req.setProductId("10000");
req.setSubIdentifier("cn111111");
req.setSubIdentifierType("ae/lazada/icbu");
req.setIdentifier("alibaba");
req.setIdentifierType("1");
AlibabaSeakingFeedbackResponse rsp = client.execute(req);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AlibabaSeakingFeedbackRequest req = new AlibabaSeakingFeedbackRequest();
req.InvokeApiName = "alibaba.seaking.imagetranslate";
req.Platform = "ae";
req.ProductId = "10000";
req.SubIdentifier = "cn111111";
req.SubIdentifierType = "ae/lazada/icbu";
req.Identifier = "alibaba";
req.IdentifierType = "1";
AlibabaSeakingFeedbackResponse rsp = client.Execute(req);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AlibabaSeakingFeedbackRequest;
$req->setInvokeApiName("alibaba.seaking.imagetranslate");
$req->setPlatform("ae");
$req->setProductId("10000");
$req->setSubIdentifier("cn111111");
$req->setSubIdentifierType("ae/lazada/icbu");
$req->setIdentifier("alibaba");
$req->setIdentifierType("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.seaking.feedback' \
-d 'partner_id=apidoc' \
-d 'sign=2176CE0E79093ECF46884A1C864D2F39' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-29+17%3A27%3A10' \
-d 'v=2.0' \
-d 'identifier=alibaba' \
-d 'identifier_type=1' \
-d 'invoke_api_name=alibaba.seaking.imagetranslate' \
-d 'platform=ae' \
-d 'product_id=10000' \
-d 'sub_identifier=cn111111' \
-d 'sub_identifier_type=ae%2Flazada%2Ficbu'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AlibabaSeakingFeedbackRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.invoke_api_name="alibaba.seaking.imagetranslate"
req.platform="ae"
req.product_id="10000"
req.sub_identifier="cn111111"
req.sub_identifier_type="ae/lazada/icbu"
req.identifier="alibaba"
req.identifier_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.seaking.feedback");
add_param(pRequest,"invoke_api_name","alibaba.seaking.imagetranslate");
add_param(pRequest,"platform","ae");
add_param(pRequest,"product_id","10000");
add_param(pRequest,"sub_identifier","cn111111");
add_param(pRequest,"sub_identifier_type","ae/lazada/icbu");
add_param(pRequest,"identifier","alibaba");
add_param(pRequest,"identifier_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.seaking.feedback', {
'invoke_api_name':'alibaba.seaking.imagetranslate',
'platform':'ae',
'product_id':'10000',
'sub_identifier':'cn111111',
'sub_identifier_type':'ae/lazada/icbu',
'identifier':'alibaba',
'identifier_type':'1'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})