From 9952d4290dd5260e3f57870495ba5ca9692a432c Mon Sep 17 00:00:00 2001 From: MstafaLakhloufi Date: Sun, 28 Jul 2024 12:11:09 -0700 Subject: [PATCH] explain get request --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 994def02..73e19acf 100644 --- a/README.rst +++ b/README.rst @@ -491,6 +491,10 @@ and IIS for Windows. * HTTP Request Method (either ``GET``, ``HEAD``, ``POST``, ``PUT``, ``PATCH``, ``DELETE``, ``CONNECT``, ``OPTIONS``, or ``TRACE``). In the case of a URL entered directly into the address bar, this will be ``GET``. + # what the GET request entails and what it does? + GET REQUEST + The GET method is used to retrieve information from the given server using a given URI. + Requests using GET should only retrieve data and would have no other effect on the data. * Domain, in this case - google.com. * Requested path/page, in this case - / (as no specific path/page was requested, / is the default path).