1.0.1 • Published 2 years ago

@pagoda-tools/rollup-build-bundle v1.0.1

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

COS

makeCosCredential

  • 描述:生成鉴权相关信息
  • 类型:MakeCosCredential
  • 示例代码
import { makeCosCredential } from '@pagoda-tools/cos-node';
const data = await makeCosCredential({
  region: 'xxx',
  bucket: 'xxx',
  prefix: 'xxxx',
  secretId: 'xxxx',
  secretKey: 'xxxx',
});

/*
{
  startTime: 1634030589,
  expiredTime: 1634032389,
  credentials: {
    tmpSecretId: 'xxxxxx',
    tmpSecretKey: 'xxxxx',
    sessionToken: 'xxxxxx'
  };
}
*/
console.log(data);