Reputation:
Which browsers support HTTP PATCH now, I've not found any recent information online. I'm especially interested to know if Chrome, Internet Explorer 11 and Microsoft Edge support the HTTP PATCH verb. I need this because I'm wondering if I should implement it in a RESTful API I'm working on.
Upvotes: 2
Views: 1171
Reputation: 6606
If you're asking which browsers are issuing PATCH
requests by themselves, AFAIK none do. However, virtually all javascript libraries I've encountered had the capability to send out requests with verbs other than GET
, HEAD
, and POST
. In fact, all browsers compliant with XmlHttpRequest Level 2 should allow PATCH
to "slip through."
Upvotes: 4