Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

explain get request #2463

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down