January 2019
Beginner
132 pages
3h 14m
English
There are nine current HTTP request methods, which define a general action desired by the client. Each method carries a particular connotation as to how the server should process the request. The nine request methods are as follows:
The most common request methods that you will need are GET, POST, and PUT. GET requests are used for retrieving information from a website. POST and PUT requests are for sending information, such as user login data, to a website. These types of requests are usually sent only when submitting some type of form data, which we will cover in later chapters in this book.
In building a web scraper, the vast majority of the time you will be sending ...
Read now
Unlock full access