Booking.com Interview Question

Verschillen tussen POST en GET?

Interview Answers

Anonymous

May 6, 2013

Logical difference: (1) GET is a resource/information fetch; POST propagates a change in state. Implementation differences: (2) GET sends all parameters as a part of URL (so, URL length limitations apply); POST sends the parameters as HTTP headers (3) GET cannot encrypt parameters; POST can (4) GET requests can be cached; POST requests cannot be (5) GET doesn't allow binary data; POST does. ... so on.

3

Anonymous

Nov 20, 2012

GET is a request to the web server to fetch a resource. POST is used to get the server to accept data for storage or processing.