Home > Software design >  HTTP SEARCH Method - Browser Support?
HTTP SEARCH Method - Browser Support?

Time:11-23

I tried using cUrl to initiate a SEARCH request but it failed. Based on what I can find, cUrl does not seem to support SEARCH.

Looking around for JavaScript support for the SEARCH method in both XMLHttpRequest and Fetch but can't find anything explicitly saying SEARCH is supported.

Does anyone know how to send a SEARCH request via the browser?

CodePudding user response:

AFAIU, every serious HTTP client (in particular curl, but browsers as well), "support" SEARCH (in that they can send that request).

It seems you're simply talking to a server that doesn't support SEARCH.

  • Related