Fixed Some Typos (#39275)

This commit is contained in:
Nakul Nambiar
2020-07-17 21:36:24 +05:30
committed by GitHub
parent b352f36169
commit 01d61afd5f

View File

@ -9,7 +9,7 @@ forumTopicId: 301520
## Description
<section id='description'>
Besides GET, there is another common HTTP verb, it is POST. POST is the default method used to send client data with HTML forms. In REST convention, POST is used to send data to create new items in the database (a new user, or a new blog post). You dont have a database in this project, but you are going to learn how to handle POST requests anyway.
In these kind of requests, the data doesnt appear in the URL, it is hidden in the request body. This is a part of the HTML request, also called payload. Since HTML is text-based, even if you dont see the data, it doesnt mean that it is secret. The raw content of an HTTP POST request is shown below:
In these kind of requests, the data doesnt appear in the URL, it is hidden in the request body. The body is a part of the HTTP request, also called the payload. Even though the data is not visible in the URL, this does not mean that it is private. To see why, look at the raw content of an HTTP POST request:
```http
POST /path/subpath HTTP/1.0