內(nèi)容庫(kù)管理
更新時(shí)間:
通過(guò)閱讀本文,您可以了解通過(guò)服務(wù)端SDK調(diào)用OpenAPI管理智能媒體服務(wù)內(nèi)容庫(kù)的示例代碼。
示例代碼
您可以通過(guò)阿里云OpenAPI開(kāi)發(fā)者門(mén)戶在線調(diào)試。
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
import Credential, { Config } from '@alicloud/credentials';
const Client = require('@alicloud/ice20201109').default;
// 阿里云賬號(hào)AccessKey擁有所有API的訪問(wèn)權(quán)限,建議您使用RAM用戶進(jìn)行API訪問(wèn)或日常運(yùn)維。
// 本示例以將AccessKey ID和 AccessKey Secret保存在環(huán)境變量為例說(shuō)明。配置方法請(qǐng)參見(jiàn):http://bestwisewords.com/document_detail/378664.html
const cred = new Credential();
const iceClient = new Client(new $OpenApi.Config({
credential: cred,
endpoint: 'ice.cn-shanghai.aliyuncs.com'
}));
// 如需硬編碼AccessKey ID和AccessKey Secret,代碼如下,但強(qiáng)烈建議不要把AccessKey ID和AccessKey Secret保存到工程代碼里,否則可能導(dǎo)致AccessKey泄露,威脅您賬號(hào)下所有資源的安全。
// const iceClient = new Client(new $OpenApi.Config({
// accessKeyId: '<yourAccessKeyId>',
// accessKeySecret: '<yourAccessKeySecret>',
// endpoint: 'ice.cn-shanghai.aliyuncs.com'
// }));
// 注冊(cè)內(nèi)容庫(kù)資源
iceClient.registerMediaInfo({
InputURL : 'http://example-bucket.oss-cn-shanghai.aliyuncs.com/example.mp4',
MediaType : 'video',
Businesstype : 'video',
Title : 'default_title'
}).then(function (data) {
console.log(data.body);
}, function (err) {
console.log('Error:' + err);
});
// 獲取媒資內(nèi)容信息
iceClient.getMediaInfo({
MediaId : 'e76bd08-9555-429f-9aca-17ff8983****'
}).then(function (data) {
console.log(data.body);
}, function (err) {
console.log('Error:' + err);
});
// 更新媒體信息
iceClient.updateMediaInfo({
MediaId : '76bd08-9555-429f-9aca-17ff8983****',
CoverURL : "http://example-bucket.oss-cn-shanghai.aliyuncs.com/example.jpg"
}).then(function (data) {
console.log(data.body);
}, function (err) {
console.log('Error:' + err);
});
// 刪除媒資信息
iceClient.deleteMediaInfos({
MediaIds : '****e76bd08-9555-429f-9aca-17ff8983****'
}).then(function (data) {
console.log(data.body);
}, function (err) {
console.log('Error:' + err);
});
// 列出媒資基礎(chǔ)信息
iceClient.listMediaBasicInfos({
MaxResults: 10
}).then(function (data) {
console.log(data.body);
}, function (err) {
console.log('Error:' + err);
});
相關(guān)接口
文檔內(nèi)容是否對(duì)您有幫助?