Pergunta de entrevista da empresa NeoGames

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.

Resposta da entrevista

Sigiloso

28 de mar. de 2022

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