RequestEncoding settings on azure function app
I have an Azure function app with a common trigger signature like this public static async Task<IActionResult> RunAsync( [HttpTrigger(AuthorizationLevel.Function, “post”, Route = null)] HttpRequest req, ILogger log) The request body “req.Body” doesn’t have utf-8 encoding. For this particular application I need this specific encoding. How do I achieve this, I am using the azure function … Read more