Displaying out JSON data only is not such an API. An API contains the data that synchronizes between the two applications. It connects two applications through an end-point. Basically, it works as an intermediary between the two applications. Every API request will have a response. So, in the overall process the API talks to another […]
Laravel 7 RESTful APIs For Todo App with Passport Auth
The Todo app contains a task list that will gonna perform on a daily basis or specified time frame. For creating any task, we will require login into the application. So, the application will contain the user registration and login. For the authentication, I will be using the passport auth in the Laravel 7. I […]
Laravel 7 RESTful APIs with Passport Authentication
Data security in APIs is a crucial challenge in any programming language. If you are creating any APIs for your web application then there might be a risk to access and misuse the APIs. Therefore the authentic request is required for every single call of the API. It will validate all the HTTP requests which […]