Posts for authentication

Deven
Deven wrote

Setting up Authentication in Django

Authentication is a process that confirms a user’s identity. Usually, this is done through a username (or email) and a password. You enter your username (or email) and password, which allows the system to confirm your identity; Authentication means also verify user emails for retention or marketing stuff. This tutorial is the best place if you’re looking to […]

March 2, 2020 in Django & Tutorials
Afolayan
Afolayan wrote

Authenticating Laravel APIs Using Passport

Knowledge of authentication and security procedures are important in the day to day process of building and managing applications today. In this tutorial, we will learn how to add authentication to a Laravel API using Passport. APIs are known to authenticate users using tokens as they do not maintain session between requests. With the Laravel […]

February 16, 2020 in Laravel & Tutorials
Deven
Deven wrote

Setting up React Authentication using JWT

In this article, we would be Using ReactJS and ExpressJS to show how to manage React authentication in SPAs. Authentication on SPAs can be tricky considering the various methods of authentication at our disposal such as Auth0 (which is an Auth-as-a-service platform), njwt, Okta. amongst others. For the purpose of this article, I have chosen JsonWebToken(JWT). We would be creating a developer tips application […]

December 10, 2019 in React & Tutorials
Afolayan
Afolayan wrote

How To Switch to Ajax-based Authentication in Laravel 6

In this tutorial, you will learn how to Switch to Ajax-based Authentication in Laravel 6. One of the exciting features of Laravel 6 the ability to immediately generate a fully usable authentication system by installing the laravel UI package and running the auth command. I.e composer require laravel/ui laravel ui vue –auth As exciting as […]

November 20, 2019 in Laravel & Tutorials

Using Firebase Authentication in a Vue Application

In this tutorial, we are going to build a simple Vue application using Vue CLI and firebase authentication.But first, let’s get our system set up for Vue development. Install Vue CLI Vue CLI requires node.js version 8.9 and above. So ensure you have the right version of node.js installed. You can check your node.js version […]

October 29, 2019 in Tutorials & Vue