📄️ Making POST requests
POST is one of the most common HTTP methods. It is used to send data to the server to create or update a resource. In this tutorial, we'll learn about making POST requests using Python's requests module.
📄️ Using Query String Parameters
When working with HTTP-based APIs, query string parameters often play a crucial role. They allow us to pass data to the server in a non-destructive way, meaning they don't affect the resource we're interacting with.
📄️ Sending Request Headers
In our online interactions, headers play a crucial role in HTTP requests and responses. They provide essential information about the request or response, such as indicating the requested content type, the software running on the server, or setting cookies and other preferences. In this tutorial, we'll explore how to send request headers using the Python requests library.
📄️ Session Objects and Cookie Persistence
In this tutorial, we are going to understand two key concepts in HTTP/HTTPs protocol - Session Objects and Cookie Persistence. These are advanced concepts in Python's requests library that can greatly simplify and optimize our code when dealing with HTTP requests.