How can I deal with HTTP GET query string length limitations and still want to be RESTful?

后端 未结 6 1654
栀梦
栀梦 2020-12-04 06:21

As stated in http://www.boutell.com/newfaq/misc/urllength.html, HTTP query string have limited length. It can be limited by the client (Firefox, IE, ...), the server (Apache

6条回答
  •  粉色の甜心
    2020-12-04 06:49

    The confusion around GET is a browser limitation. If you are creating a RESTful interface for an A2A or P2P application then there is no limitation to the length of your GET.

    Now, if you happen to want to use a browser to view your RESTful interface (aka during development/debugging) then you will run into this limit, but there are tools out there to get around this.

提交回复
热议问题