2

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.

Quang Hoàng
  • 349
  • 4
  • 15

1 Answers1

3

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.

Mikhail Shilkov
  • 34,128
  • 3
  • 68
  • 107