我正在使用Azure Blob服务库中的此功能:https://azure.github.io/azure-storage-node/global.html#createBlobService
但它不允许我,当在environment.ts中指定环境变量时,它会抛出此错误:错误错误:创建服务客户端时必须提供凭据。
当尝试传递ConnectionString时,它会抛出此错误:ERROR TypeError:crypto.createHmac不是函数
var azure = require('azure-storage');
var bs = azure.createBlobService();
bs.createContainerIfNotExists('taskcontainer', {
publicAccessLevel: 'blob'
}, function(error, result, response) {
if (!error) {
console.log("True");
// if result = true, container was created.
// if result = false, container already existed.
}
});
以前有人有这个问题吗?很高兴看到解决方案