Azure functions - How to read form data
问题 How to read form data in Azure functions ? I tried to do it in several ways, but always I get an error, eg.: using System.Net; public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log) { dynamic data = await req.Content.ReadAsFormDataAsync(); return req.CreateResponse(HttpStatusCode.OK, $" {data}"); } Error: Exception while executing function: Functions.FormTrigger. System.Net.Http.Formatting: No MediaTypeFormatter is available to read an object of type