Parsing error in ASP.NET Core controller – want to receive JSON as string
I'm currently writing an ASP.NET Core web service and I want to setup an endpoint receiving JSON data in a string. I don't want to have it parsed before the endpoint starts. I've defined this endpoint: [HttpPost] [Route("pushjson/{channelCode}")] public async…