(This post refers to Azure Functions v2)
There are different ways to access both the request data and also request metadata when a HTTP-triggered Azure Function is executed.
Getting Query String Data in Azure Functions
Suppose we have the following class (e.g. in table storage):
public class PhotoMetadata
{
public string PartitionKey { get; set; }
public string RowKey { get; set; }
public string FileName { get; set; }
public string Keywords { get; set; }
}
We could write an Azure Function triggered by a HTTP GET that returns an