113 questions
-2 votes
1 answer
102 views
InvalidContentLink ARM template deployment
I get the InvalidContentLink: Unable to download deployment content from error when pointing to URI (LinkedTemplatesBaseUrl) of my deployment json file. Steps Im taking- 1. Azure CLi task to generate ...
0 votes
1 answer
32 views
RMAN shell script on the Linux server is not picking the SAS token from the variable group
RMAN shell script on the Linux server is not picking the SAS token from the variable group, we are trying to run the backup script with the SAS token but it is not working by passing the SAS token as ...
1 vote
1 answer
350 views
Writing a file to Azure blob storage from synapse throws TASK_WRITE_FAILED
I am creating some parquet files and I need to save them to an Azure blob storage. For this question I recreated the error trying to write a csv file out of a data frame. I am working this script in ...
0 votes
1 answer
169 views
Generating SAS account token in powershell
"I generated a token using Azure and it’s working, but I need to create a correct script in PowerShell using the key. The stringToSign I generated is different from the one provided by Azure, and ...
0 votes
1 answer
2k views
Netty versions conflict with azure-identity、azure-storage-file-datalake java sdk
I am trying to implement ADLS token credential vending in my project with the following dependencies: // 1.13.1 implementation(libs.azure.identity) // 12.20.0 implementation(libs.azure.storage.file....
0 votes
1 answer
115 views
When generating a ADLS SAS token, specifying the path causes an authorization failure
I use following code to generate SAS token, when path is null or empty string, it's working. TokenCredential tokenCredential = new ClientSecretCredentialBuilder() .tenantId(tenantId) ...
0 votes
1 answer
143 views
Efficient and Secure Access to Images in Azure Blob Storage for a List of Products
I’m developing an application where I have a list of products, each with an associated image stored in Azure Blob Storage, and I need a secure and efficient way to provide access to these images on ...
0 votes
2 answers
736 views
How to Pass SAS Token as Header in Azure Logic App HTTP Trigger?
I am working with an Azure Logic App that is triggered by an HTTP request. The current setup uses a Shared Access Signature (SAS) token in the query string to authenticate the requests. However, for ...
0 votes
1 answer
192 views
Error: "This request is not authorized to perform this operation" when using SASTokens to access Azure Storage Queues using Azure Storage SDK v12
I am using C# code like this (see below) to read/add/process Azure Storage queues using Storage SDK v12 and SAS Tokens. No matter what I change, I always have the same error: "This request is not ...
0 votes
1 answer
372 views
How to generate SAS token for Azure from Java with the same structure as the one generated from Azure Portal?
I am trying to upload a file to an Azure container from a basic Spring Boot application, and I was successful so far. However, when I try to read or write the tags on the Azure blob, I keep getting ...
0 votes
1 answer
269 views
Azure Maps SAS creation fails
I have to use the weather API from Azure MAPS with Shared access signature token authentication I have followed the instructions from here: https://github.com/MicrosoftDocs/azure-docs/blob/main/...
0 votes
1 answer
404 views
Downloading file from Azure Blob Storage from a React-Native application
I want to connect to azure blob storage via my React-Native Application. I am getting this error: [Error: Account connection string is only supported in Node.js environment] Does this mean that I ...
0 votes
1 answer
280 views
Questions around creating user delegation sas
I am trying to create a user delegation sas for a storage account blob in Azure and found this document. https://learn.microsoft.com/en-us/rest/api/storageservices/create-user-delegation-sas Looking ...
0 votes
0 answers
230 views
Is there a way for hitting the host.docker.internal from local machine?
Quickly about service While writing docker compose for service i ran into issue. There are 4 parts that are required for service to fully work e2e on docker that is frontend in angular, backend in c# ....
0 votes
1 answer
335 views
Azure Blob Storage creating user delegation SAS token
I create user delegated SAS token with this code: var blobClient = new BlobServiceClient(blobUri, tokenCredential, null); var userDelegationKey = await blobClient.GetUserDelegationKeyAsync(...