Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is There a Table That Shows HTTP Method Support by Browser [duplicate]

Possible Duplicate:
Are the PUT, DELETE, HEAD, etc methods available in most web browsers?

I've seen lots of stuff that generally say "not all browser support all HTTP methods" etc., but is there a nice table that shows specifically which HTTP methods are support that's broken down by browser?

I see this previous question on SO but it's not the answer I'm looking for: Fine Grained rest HTTP verbs browser support

like image 614
Rob Avatar asked Sep 27 '10 16:09

Rob


People also ask

What are the 4 types of HTTP request methods?

The most commonly used HTTP request methods are GET, POST, PUT, PATCH, and DELETE.

Which HTTP method is used to show available methods for use on a resource?

The OPTIONS method describes the communication options for the target resource.

Which HTTP method Send by browser that asks the server to get the page only?

Answer is "get"


1 Answers

As of now, all browsers except IE have been fixed to support arbitrary methods. IE9 will do when in standards mode. Earlier IEs can use all methods if you use the XMLHttpRequest Active-X object (instead of the native Javascript one).

like image 130
Julian Reschke Avatar answered Sep 18 '22 01:09

Julian Reschke