@DARIO ESCUDERO DE PACO It sounds like you are having trouble connecting your Azure Web App to your Blob Storage account via a SAS token. Here are a few things you can try to troubleshoot the issue:
Check that the SAS token is correct: Make sure that the SAS token you are using is correct and has not expired. You can regenerate the SAS token in the Azure portal to ensure that it is up-to-date.
- Check that the Web App has permission to access the Blob Storage account: Make sure that the Web App has the necessary permissions to access the Blob Storage account. You can grant permissions by adding the Web App's identity to the Blob Storage account's access control list (ACL).
- Check that the Web App is using the correct endpoint: Make sure that the Web App is using the correct endpoint to access the Blob Storage account. The endpoint should be in the format
https://<<span class=" active-doc-0 active-doc-1 active-doc-2" data-doc-items="0,1,2">account-name>.blob.core.windows.net[1](#doc-pos=0)[2](#doc-pos=1)[3](#doc-pos=2)</span>
. - Check that the Web App is using the correct HTTP method: Make sure that the Web App is using the correct HTTP method (e.g. GET, PUT, POST) to access the Blob Storage account. The HTTP method should match the permissions granted by the SAS token.
- Check that the Web App is using HTTPS: Make sure that the Web App is using HTTPS to access the Blob Storage account. SAS tokens should only be used over HTTPS to ensure that they are secure.
- Check that the Web App is using the correct SAS token format: Make sure that the Web App is using the correct SAS token format. SAS tokens should be in the format
?sv=<version>&sr=<resource>&sig=<signature>&st=<start-time>&se=<expiry-time>&sp=<permissions>
If none of these steps resolve the issue, you may need to enable diagnostic logging on your Web App to get more information about the error. You can also try using a tool like Fiddler to capture the HTTP traffic between the Web App and the Blob Storage account to see if there are any errors or issues with the requests.