You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use this module for development purposes before linking to a production account. For this reason I am using the storage emulator but I cannot seem to connect using fast-azure-storage. Here is what I've tried:
const blob = new azure.Blob({ accountId: "devstoreaccount1", accessKey: "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==" });
and even const blob = new azure.Blob({ accountId: "devstoreaccount1", sas: "sv=2018-03-28&si=uploads-164B532CC89&sr=c&sig=nZXR2hVmx81jRMhPpy4ZsKzKi2OLhTkziEj66O5fC7A%3D" });
I just keep getting the following error
Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature
I was using azure-storage with a connection string before as such: azureStorage.createBlobService( "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;" );
is there an option to do the same with this module?
The text was updated successfully, but these errors were encountered:
I am trying to use this module for development purposes before linking to a production account. For this reason I am using the storage emulator but I cannot seem to connect using fast-azure-storage. Here is what I've tried:
const blob = new azure.Blob({ accountId: "devstoreaccount1", accessKey: "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==" });
and
const blob = new azure.Blob({ accountId: "devstoreaccount1", accessKey: "Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==", sas: "sv=2018-03-28&si=uploads-164B532CC89&sr=c&sig=nZXR2hVmx81jRMhPpy4ZsKzKi2OLhTkziEj66O5fC7A%3D" });
and even
const blob = new azure.Blob({ accountId: "devstoreaccount1", sas: "sv=2018-03-28&si=uploads-164B532CC89&sr=c&sig=nZXR2hVmx81jRMhPpy4ZsKzKi2OLhTkziEj66O5fC7A%3D" });
I just keep getting the following error
I was using
azure-storage
with a connection string before as such:azureStorage.createBlobService( "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;" );
is there an option to do the same with this module?
The text was updated successfully, but these errors were encountered: