Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix - The requested resource does not support http method 'POST'

Below is WebAPI action. On googling about the below error:-

The requested resource does not support http method 'POST'

I got number of links & updated my api accordingly but still I am getting the same error.

  • Web api not supporting POST method
  • ASP.NET Web Api: The requested resource does not support http method 'GET'

    [AcceptVerbs("POST")]
    [HttpPost]
    [Route("rename/{userId}/{type}/{title}/")]
    public IHttpActionResult Rename([FromBody] int userId,  [FromBody] string type, [FromBody] string title)
    {
    
        //my api stuff
    }
    

But still when calling the above via post man throws the error.

Error

How do I get rid of this error??

Also is it possible to fix this without using [FromBody] attribute in the method parameters list?

Any help/suggestion highly appreciated. Thanks.

like image 736
Kgn-web Avatar asked Feb 15 '17 14:02

Kgn-web


2 Answers

You have declared route which requires url parameters

[Route("rename/{userId}/{type}/{title}/")]

So when you send request to api/customer/rename it does not match this method. You should remove parameters which you are passing in request body from route parameters

[Route("rename")]

Make sure that you have appropriate RoutePrefix("api/customer") attribute on your controller.


Second problem is multiple [FromBody] parameters. You will get can't bind multiple parameters error. There is limitation - you can mark only one parameter as FromBody. See Sending Simple Types notes:

Web API reads the request body at most once, so only one parameter of an action can come from the request body. If you need to get multiple values from the request body, define a complex type.

You should create complex type which will hold all parameters

public class RenameModel
{
   public int UserId { get; set; }
   public string Type { get; set; }
   public string Title { get; set; }
}

And change method signature to

[HttpPost]
[Route("rename")]
public IHttpActionResult Rename(RenameModel model)

And send request data as application/x-www-form-urlencoded

like image 148
Sergey Berezovskiy Avatar answered Nov 18 '22 18:11

Sergey Berezovskiy


 [Route("rename/{userId}/{type}/{title}/")]
 public IHttpActionResult Rename([FromBody] int userId,  [FromBody] string  type, [FromBody] string title)

The last answer is correct, you're asking for these parameters in the route, but saying that you expect them in the post body. Also, usually the route would begin with a noun rather than a verb. What is it you're renaming? (i.e. [Route("users/rename/{userId}/{type}/{title}")]

Based on your initial post, try this instead:

 [HttpPost]
 [Route("rename/{userId}/{type}/{title}" Name = "RenameUser"]
 public IHttpActionResult Rename(int userId, string type, string title)
 {
     _myServiceMethod.Rename(userId, type, title);
     return new StatusCodeResult(HttpStatusCode.Created, this);   
 }

Or, if you wanted to do a post with the info in the body: Declare your data contract:

public class User
{
    public string Type { get; set; }
    public string Title { get; set; }
}

Then on the endpoint:

[HttpPost]
[Route("rename/{userId}", Name = "RenameUserPost")]
public IHttpActionResult RenameUserPost(int userId, [FromBody] User userData)
{
    return new StatusCodeResult(HttpStatusCode.Created, this);
}

Note that in both returns 'this' refers to your controller class that inherits from ApiController. Verified both of these in swagger, and they accept POSTs and return status codes.

Hope this helps.

like image 2
jeffj23 Avatar answered Nov 18 '22 18:11

jeffj23