Web API - 405 - The requested resource does not support http method 'PUT'

前端 未结 10 696
说谎
说谎 2020-12-01 14:10

I have a Web API project and I am unable to enable \"PUT/Patch\" requests against it.

The response I get from fiddler is:


HTTP/1.1 405 Method Not Al         


        
10条回答
  •  误落风尘
    2020-12-01 14:50

    This is also the error message returned if you forget to make the Put() method on your API controller public. Which is obvious in hindsight, but caused me a good ten minutes of head-scratching.

提交回复
热议问题