difference between GET and POST Methods?
Ask by Sushant Mishra
Updated 14 Sep 2020
GET Method ():
1) Data is appended to the URL.
2) Data is not secret means it is not secure.
3) It is a single call system
4) Maximum data that can be sent is 256.
5) Data transmission is faster
6) It can be cached.
7) It maintain the browser history
POST Method ():
1) Data is not appended to the URL.
2) Data is Secret .It is fully secure
3) There is no limitation of data we can send any amount of data.
4) Data transmission is comparatively slow.
5) No default and should be explicitly specified.
6) Post request are never cached.
7) It not maintain the browser history