TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AliexpressUgcProductVideoUploadRequest req = new AliexpressUgcProductVideoUploadRequest();
req.setProductId(123554348908L);
req.setMediaType("video");
req.setVideoFileUrl("http://ae-cn.alicdn.com/kddd6bep.mp4");
AliexpressUgcProductVideoUploadResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());
ITopClient client = new DefaultTopClient(url, appkey, secret);
AliexpressUgcProductVideoUploadRequest req = new AliexpressUgcProductVideoUploadRequest();
req.ProductId = 123554348908L;
req.MediaType = "video";
req.VideoFileUrl = "http://ae-cn.alicdn.com/kddd6bep.mp4";
AliexpressUgcProductVideoUploadResponse rsp = client.Execute(req, sessionKey);
Console.WriteLine(rsp.Body);
$c = new TopClient;
$c->appkey = $appkey;
$c->secretKey = $secret;
$req = new AliexpressUgcProductVideoUploadRequest;
$req->setProductId("123554348908");
$req->setMediaType("video");
$req->setVideoFileUrl("http://ae-cn.alicdn.com/kddd6bep.mp4");
$resp = $c->execute($req, $sessionKey);
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=aliexpress.ugc.product.video.upload' \
-d 'partner_id=apidoc' \
-d 'session=1b6652cb-1853-4651-a467-961888d296e6' \
-d 'sign=F8912DE0B8C246987F26991361741ED4' \
-d 'sign_method=hmac' \
-d 'timestamp=2025-04-28+17%3A10%3A08' \
-d 'v=2.0' \
-d 'media_type=video' \
-d 'product_id=123554348908' \
-d 'video_file_url=http%3A%2F%2Fae-cn.alicdn.com%2Fkddd6bep.mp4'
# -*- coding: utf-8 -*-
import top.api
req=top.api.AliexpressUgcProductVideoUploadRequest(url,port)
req.set_app_info(top.appinfo(appkey,secret))
req.product_id=123554348908
req.media_type="video"
req.video_file_url="http://ae-cn.alicdn.com/kddd6bep.mp4"
try:
resp= req.getResponse(sessionkey)
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,"aliexpress.ugc.product.video.upload");
add_param(pRequest,"product_id","123554348908");
add_param(pRequest,"media_type","video");
add_param(pRequest,"video_file_url","http://ae-cn.alicdn.com/kddd6bep.mp4");
pResponse = top_execute(pClient,pRequest,sessionKey);
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('aliexpress.ugc.product.video.upload', {
'product_id':'123554348908',
'media_type':'video',
'video_file_url':'http://ae-cn.alicdn.com/kddd6bep.mp4'
}, function(error, response) {
if (!error) console.log(response);
else console.log(error);
})