I am building an API to process an image using Azure Function and C#. How can I post an image to Azure Function as a parameter in request body?
Thank you.
I am building an API to process an image using Azure Function and C#. How can I post an image to Azure Function as a parameter in request body?
Thank you.
If you are thinking of HTTP trigger, you will receive HttpRequestMessage
, which you can use to extract files the same way you would do in ASP.NET Web API controller.
There are many links explaining that, e.g.