通过阅读本文,您将了解通过服务端SDK调用OpenAPI获取媒资上传地址和凭证的示例代码。
示例代码
您可以通过阿里云OpenAPI开发者门户在线调试。
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
import Credential, { Config } from '@alicloud/credentials';
const Client = require('@alicloud/ice20201109').default;
// 阿里云账号AccessKey拥有所有API的访问权限,建议您使用RAM用户进行API访问或日常运维。
// 本示例以将AccessKey ID和 AccessKey Secret保存在环境变量为例说明。配置方法请参见:https://help.aliyun.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,代码如下,但强烈建议不要把AccessKey ID和AccessKey Secret保存到工程代码里,否则可能导致AccessKey泄露,威胁您账号下所有资源的安全。
// const iceClient = new Client(new $OpenApi.Config({
// accessKeyId: '<yourAccessKeyId>',
// accessKeySecret: '<yourAccessKeySecret>',
// endpoint: 'ice.cn-shanghai.aliyuncs.com'
// }));
// 获取媒资上传地址和凭证。
iceClient.createUploadMedia({
fileInfo: "{\"Type\":\"video\",\"Name\":\"test\",\"Size\":123,\"Ext\":\"mp4\"}",
mediaMetaData: "{\"Title\":\"UploadTest\",\"Description\":\"UploadTest\",\"BusinessType\":\"general\"}",
uploadTargetConfig: "{\"StorageType\":\"oss\",\"StorageLocation\":\"testbucket.oss-cn-shanghai.aliyuncs.com\"}",
}).then(function (data) {
console.log(data.body);
}, function (err) {
console.log('Error:' + err);
});
相关接口
文档内容是否对您有帮助?