I have created an Azure Function using the BlobTriggerCSharp example and configured the storage account and path:
I double checkt that there is a mbrtest
container within the configured storage account:
I didn't changed anything else. Here is the run.csx:
public static void Run(Stream myBlob, string name, TraceWriter log)
{
log.Info($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
}
When I press the run button, I get the following error:
2017-05-12T13:47:35.567 Exception while executing function: Functions.BlobTriggerCSharp1. Microsoft.Azure.WebJobs.Host: One or more errors occurred. Exception binding parameter 'myBlob'. Microsoft.Azure.WebJobs.Host: Blob identifiers must be in the format 'container/blob'.
Any hints?