I have written two Web API in .net core 3.1 to redirect the Azure storage blob file url and for download.
First API - To redirect to Azure Storage blob url with SAS token.
Second API - To return the Azure Storage blob url with SAS token and file downloading logic is handled in client side using the Azure blob url.
These two API works fine on localhost but when hosted in windows server these both API return 503 - Service Unavailable response.
Note: 1. I am using Azure Storage Blobs nugget version of 12.3.0 2. My Blob container is created with Private access.
Let me kindly know what and where I am doing wrongly. Thanks in advance.