user152949
user152949

Reputation:

HTTP PATCH verb support status

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

Answers (1)

DaSourcerer
DaSourcerer

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

Related Questions