Skip to main content

Posts

Featured

Rest API authentication process in Python

Introduction to REST API REST stands for Representational state transfer and REST API's are the type of API's that will enable you to use standard HTTP methods (GET, PUT, POST, DELETE, etc.) to manipulate the data in quick time. The client sends a request along with the resource in the form of REST API and the server will return the state of the resource along with request data back to the client. Each request from the client to server must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server. The session state is therefore kept entirely on the client. All in all, it's a stateless transition i.e. after every request is executed, the entire session will be terminated/closed and a new state/session will be formed for a new request. While requesting data from the server, it is required to pass the resource as an argument to the request. Similarly, it is required to send the data in the...

Latest posts