I need to pass header information in Azure Function activity in Data Factory. As can be seen in the picture, the header is marked in red.
I need to change the following code to receive the header. I also need to capture the value of the header.
public static async Task Run([HttpTrigger(AuthorizationLevel.Function, "get", Route = "{name}" )] HttpRequestMessage req, string name, TraceWriter log, [Blob("pk-api-test/{name}", FileAccess.Read)] Stream myBlob)
Route
anymore, instead, you want to pass header info to http trigger and capture the info to retrieve blob? – Jerry Liu