We will create a helper to share some of the code that we will write for Azure Blob storage between the SendMessages function and the ClearPhotos function that we will create. To use Aure Blob storage locally, we need to add the connection strings to our local.settings.json file.
You will find the connection string under Access keys if you navigate to the Storage Account resource in the Azure portal, as illustrated in the following screenshot:
The name for the connection string will be StorageConnection. Also, add the same connection string to the AzureWebJobsStorage key, as illustrated in the following code block:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "{EnterTheConnectingStringHere}",
"AzureWebJobsDashboard": "",
"AzureSignalRConnectionString": "{EnterTheConnectingStringHere}"
"StorageConnection...