Hi @mc
From we previous discuss, the issue relates the RequestFilter
. You can try to remove it.
Then, to read the request body in the action method, we should not use the [FromBody]
attribute and parameters. Because the request body can only be read once, from beginning to end. So, after model binding, if we still using the StreamReader to reader the request body, it will return empty.
So, you can refer to the following code to read the request body in the action method:
More detail information about the HttpContext, see Use HttpContext in ASP.NET Core (#Enable request body buffering).
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Dillion