Method not allowed when redirect post method

1.2k Views Asked by At

When I redirect the GET method in middleware using asp net core it works fine. But When I want to redirect the post method I accept the method not allowed(405) error. Here is my redirect code in the startup.cs(Configure method):

 app.Use(async (context, next) =>
        {
            var url = context.Request.Path.Value;

            // Redirect to an external URL
            if (url.Contains("/api/auth"))
            {
                context.Response.Redirect("http://localhost:port"+url);
                return;   // short circuit
            }

            await next();
        });

How can I solve it?

1

There are 1 best solutions below

0
On

You can try to redirect to a HttpGet action in middleware,and in the action redirect to a HttpPost action. Here is a demo:

app.Use(async (context, next) =>

            {
                var url = context.Request.Path.Value;
                if (url.Contains("/api/auth"))
                {
                    context.Response.Redirect("https://localhost:44358/Home/TestGet");
                    return;   // short circuit
                }
                await next();
            });

HomeController:

[HttpGet]
        public IActionResult TestGet() {
            return TestPost();
        }
        [HttpPost]
        public IActionResult TestPost() {
            return Json("Here is a post action");
        }

result: enter image description here