Hi, I have been trying to connect ot our azure blog storage but keep getting Could not found the requested BLOB 'xxxx.json' in the container 'xxx-xxxx'!.
I have followed both resources below with no success
https://docs.abp.io/en/abp/latest/Blob-Storing-Azure https://community.abp.io/articles/uploaddownload-files-to-azure-storage-with-the-abp-framework-sr7t3w4p
What am I missing? I am using the Secondary Connection String key for the Azure storage account which has the format below:
"DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=xxx;BlobEndpoint=xxx;QueueEndpoint=xxx/;TableEndpoint=xxx;FileEndpoint=xxx;"
I have also done the below
Configure<AbpBlobStoringOptions>(options =>
{
options.Containers.ConfigureDefault(container =>
{
container.UseAzure(azure =>
{
azure.ConnectionString = "xxx";
azure.ContainerName = "xxx-xxx";
azure.CreateContainerIfNotExists = false;
});
});
});
Thanks @alper that worked
Hi @liangshiwei we are on ABP Framework version: v4.0.2 Commerical and still experience all POST API calls returning a 400 Bad Request when calling via swagger? logs also reveal "The required antiforgery cookie ".AspNetCore.Antiforgery.ddttNScLARY" is not present."
What is it we need to do?