1

With RESTful services I believe the user should be able to use GET or POST as they wish. The user should be able to put their parameters in the URL and/or Header of GET request and Header or body of POST request.

Is this correct?

Arti
  • 2,993
  • 11
  • 68
  • 121

1 Answers1

0

Assuming you mean that the user is the client then I would say that your statement is not correct. The service provider of those services decides how its webservices should be consumed and how it will respond.

Meaning if it expects the client/user to post its request, it could return an error if the user/client uses a get or vice versa.

Kay Tsar
  • 1,428
  • 11
  • 14