What is the best way to design a HTTP request when somewhat complex parameters are needed?

前端 未结 11 1006
一向
一向 2020-12-13 00:21

I have some web services that I am writing and I am trying to be as RESTful as possible. I am hosting these web services using a HTTPHandler running inside of IIS/ASP.NET/S

11条回答
  •  自闭症患者
    2020-12-13 00:56

    I'd aim for HTTP POST. It's nicely tokenized when it gets to PHP (or whichever you're using) and it doesn't have the size limits the others have.

提交回复
热议问题