Essa empresa é sua?
When sending HTTP requests, the 2 most common methods are GET and POST. Explain what the main differences between the 2 are, and give an example of a type of call you would use each for.
Sigiloso
GET is used for viewing something, without changing it, while POST is used for changing something GET carries request parameter appended in URL string while POST carries request parameter in message body which makes it more secure way of transferring data