Posts tagged "Authentication and Authorization"

Published:

Next.js 13 + MySQL - User Registration and Login Tutorial with Example App

In this tutorial we'll go through an example of how to build a simple user registration, login and user management (CRUD) application with Next.js and MySQL.
Published:

Angular 15 Auth Boilerplate - Sign Up with Verification, Login and Forgot Password

How to build a full-featured boilerplate authentication system in Angular that includes email sign up, verification, authentication, role based authorization, forgot password, reset password, view & update my profile, and an admin section for managing all accounts.
Published:

Next.js 13 + MongoDB - User Registration and Login Tutorial with Example App

In this tutorial we'll go through an example of how to build a simple user registration, login and user management (CRUD) application with Next.js and MongoDB.
Published:

.NET 7.0 + C# - JWT Authentication Tutorial without ASP.NET Core Identity

Custom JWT authentication without Identity in ASP.NET Core and C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published:
Last updated:

React 18 + Redux - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration, login and CRUD functionality with React 18 and Redux.
Published:

React 18 + Redux - Basic HTTP Authentication Example & Tutorial

Tutorial on how to build a simple Basic Auth login app with React 18, Redux and the Redux Toolkit.
Published:

React 18 Authentication with Node.js JWT API

How to implement authentication with a React 18 front-end app and Node.js back-end API
Published:

React 18 Authentication with .NET 6.0 (ASP.NET Core) JWT API

How to implement authentication with a React 18 front-end app and .NET 6.0 (ASP.NET Core) back-end API
Published:

JWT with Refresh Tokens vs JWT Access Tokens Alone for Auth

A brief explanation of the differences between using JWT alone vs JWT with Refresh Tokens, and links to a few tutorials on how to implement each approach.
Published:

Angular 14 Authentication with Node.js JWT API

How to implement authentication with an Angular front-end app and Node.js back-end API
Published:

Angular 14 Authentication with .NET 6.0 (ASP.NET Core) JWT API

How to implement authentication with an Angular front-end app and .NET 6.0 (ASP.NET Core) back-end API
Published:

Vue 3 Authentication with Node.js JWT API

How to implement authentication with a Vue 3 front-end app and Node.js back-end API
Published:

Vue 3 Authentication with .NET 6.0 (ASP.NET Core) JWT API

How to implement authentication with a Vue 3 front-end app and .NET 6.0 (ASP.NET Core) back-end API
Published:

Vue 3 + Pinia - JWT Authentication with Refresh Tokens Example & Tutorial

An example of how to implement JWT authentication with refresh tokens in Vue 3 and Pinia.
Published:

.NET 7.0 Auth - Sign & Validate JWT Without Core Identity

This is a quick post to show how easy it is to sign and validate JWT auth tokens in .NET 7.0 without using the built-in Core Identity membership system.
Published:

.NET 7.0 - Create Custom AuthorizeAttribute and AllowAnonymous Attribute

This is a super quick post on how to create custom [Authorize] and [AllowAnonymous] attributes in .NET 7.0.
Published:

.NET 7.0 - Facebook Authentication API Tutorial with Example

Tutorial on how to build a .NET 7.0 API that supports Facebook Authentication.
Published:

Angular 14 - Facebook Authentication Tutorial with Example

In this tutorial we'll cover how to implement Facebook Authentication in Angular 14.
Published:

Angular 14 - Basic Authentication Tutorial with Example

How to implement Basic HTTP Authentication with Angular 14 and Reactive Forms
Published:

Angular 14 - Role Based Authorization Tutorial with Example

In this tutorial we'll go through an example of how to implement role based authorization / access control in Angular 14.
Published:

Angular 14 - JWT Authentication with Refresh Tokens Example & Tutorial

An example of how to implement JWT authentication with refresh tokens in Angular 14.
Published:

Angular 14 - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration, login and CRUD functionality with Angular 14.
Published:

Angular 14 - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with Angular 14
Published:

Vue 3 + Pinia - User Registration and Login Example & Tutorial

Tutorial on how to implement user registration, login and CRUD functionality with Vue 3 and Pinia. Includes live demo and example back-end APIs built with Node.js and .NET.
Published:

Node.js + MS SQL Server - Simple API for Authentication, Registration and User Management

Simple Node.js + MS SQL Server API that supports User Registration, Login and User Management. Includes example front end apps in React, Angular and Vue.
Published:

Vue 3 + Pinia - Basic HTTP Authentication Tutorial & Example

Tutorial on how to build a simple login application with Vue 3 and Pinia that uses Basic HTTP authentication.
Published:

React 18 + Redux - JWT Authentication Example & Tutorial

Tutorial on how to build a simple JWT login app with React 18, Redux and the Redux Toolkit.
Published:

Vue 3 + Pinia - Redirect to Previous URL After Login

How to redirect a user back to the previous (original) URL after logging into a Vue 3 + Pinia application.
Published:

Vue 3 + Pinia - JWT Authentication Tutorial & Example

Tutorial on how to build a simple login application with Vue 3 and Pinia that uses JWT authentication.
Published:

.NET 6.0 - Boilerplate API Tutorial with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate .NET 6.0 API that supports email sign up, verification, authentication, role based access control, forgot password, reset password and account management (CRUD) functionality.
Published:

.NET 6.0 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in .NET 6.0 & C#. Includes example client apps built with Angular, React and Vue.
Published:
Last updated:

.NET 6.0 - JWT Authentication with Refresh Tokens Tutorial with Example API

How to implement JWT authentication with Refresh Tokens in a .NET 6.0 API. Includes example client app built with Angular.
Published:

.NET 6.0 - Create and Validate JWT Tokens + Use Custom JWT Middleware

This is a quick example of how to create and validate JWT tokens in .NET 6.0. We'll also cover how to implement custom JWT authentication using custom JWT middleware and a custom authorize attribute.
Published:

.NET 6.0 - Hash and Verify Passwords with BCrypt

This is a quick example of how to hash and verify passwords in .NET 6.0 using the BCrypt.Net-Next password hashing library, a C# implementation of the bcrypt password hashing function.
Published:

.NET 6.0 - User Registration and Login Tutorial with Example API

How to build a .NET 6.0 API that supports user registration, login with JWT authentication and CRUD operations. Includes example client apps built with Angular, Blazor, React & Vue.
Published:

.NET 6.0 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in .NET 6.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published:

.NET 6.0 - JWT Authentication Tutorial with Example API

How to implement custom JWT authentication in .NET 6.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published:

React + Recoil - User Registration and Login Example & Tutorial

Tutorial on how to implement user registration, login and CRUD functionality with React and Recoil, including a live demo application and example back-end APIs built with Node.js and .NET.
Published:

React + Recoil - Basic HTTP Authentication Tutorial & Example

This tutorial shows how to build a simple login application with React and Recoil that uses Basic HTTP authentication.
Published:

React + Recoil - JWT Authentication Tutorial & Example

This tutorial shows how to build a simple login application with React and Recoil that uses JWT authentication.
Published:

.NET 5.0 - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate .NET 5.0 API that supports email sign up, verification, authentication, role based access control, forgot password, reset password and account management (CRUD) functionality.
Published:
Last updated:

Next.js 11 - User Registration and Login Tutorial with Example App

In this tutorial we'll go through an example of how to build a simple user registration, login and user management (CRUD) application with Next.js.
Published:

.NET 5.0 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in .NET 5.0 & C#. Includes example client apps built with Angular, React and Vue.
Published:

.NET 5.0 API - JWT Authentication with Refresh Tokens

How to implement JWT authentication with Refresh Tokens in a .NET 5.0 API. Includes example client app built with Angular.
Published:

.NET 5.0 - Create and Validate JWT Tokens + Use Custom JWT Middleware

This is a quick example of how to create and validate JWT tokens in .NET 5.0. We'll also cover how to implement custom JWT authentication using custom JWT middleware and a custom authorize attribute.
Published:

.NET 5.0 - Hash and Verify Passwords with BCrypt

This is a quick example of how to hash and verify passwords in .NET 5.0 using the BCrypt.Net-Next password hashing library, a C# implementation of the bcrypt password hashing function.
Published:
Last updated:

.NET 5.0 - Simple API for Authentication, Registration and User Management

This tutorial shows how to build a .NET 5.0 API that supports user registration, login with JWT authentication and user CRUD operations. Includes example client apps built with Angular, Blazor, React & Vue.
Published:

.NET 5.0 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in .NET 5.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published:

.NET 5.0 - JWT Authentication Tutorial with Example API

How to implement custom JWT authentication in .NET 5.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published:

Blazor WebAssembly - User Registration and Login Example & Tutorial

In this tutorial we'll go through an example of how to build a simple user registration, login and user management (CRUD) application with Blazor WebAssembly.
Published:

React - Facebook Login Tutorial & Example

How to implement Facebook Login in React with an example app that allows you to login with Facebook and view/update/delete accounts registered in the React app.
Published:

Angular 10 - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with Angular 10
Published:

Vue 3 - Facebook Login Tutorial & Example

How to implement Facebook Login in Vue 3 with an example app that allows you to login with Facebook and view/update/delete accounts registered in the Vue app.
Published:

Blazor WebAssembly - Authentication Without Identity

This is a quick post to show how to implement custom authentication in ASP.NET Core Blazor without the Identity membership system.
Published:

Vue.js - Facebook Login Tutorial & Example

In this tutorial we'll cover how to implement Facebook Login in Vue.js with an example app that allows you to login with Facebook and view/update/delete accounts registered in the Vue app.
Published:

Angular 10 - Facebook Login Tutorial & Example

In this tutorial we'll cover how to implement Facebook Login in Angular 10 with an example app that allows you to login with Facebook and view/update/delete accounts registered in the Angular app.
Published:

Blazor WebAssembly - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with ASP.NET Core Blazor WebAssembly
Published:

Angular 10 - Role Based Authorization Tutorial with Example

An example of how to implement role based authorization / access control in Angular 10.
Published:

Node.js + MySQL - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate authentication API with Node.js and MySQL that includes email sign up & verification, authentication & role based authorization, forgot password & reset password functionality, account management (CRUD) routes with role based access control, and Swagger documentation.
Published:

Angular 10 Boilerplate - Email Sign Up with Verification, Authentication & Forgot Password

How to build a boilerplate authentication system in Angular including email sign up & verification, authentication & role based authorization, forgot password & reset password functionality, view & update my profile section, and admin only section for managing all accounts.
Published:

Node.js + MySQL - Simple API for Authentication, Registration and User Management

Simple Node.js + MySQL API that supports User Registration, Login and User Management. Uses Sequelize ORM and includes example client apps built with React, Angular & Vue.
Published:

Blazor WebAssembly - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with ASP.NET Core Blazor WebAssembly.
Published:

Angular 10 - JWT Authentication with Refresh Tokens

An example of how to implement JWT authentication with refresh tokens in Angular 10.
Published:

ASP.NET Core 3.1 - Create and Validate JWT Tokens + Use Custom JWT Middleware

This is a quick example of how to create and validate JWT tokens in ASP.NET Core 3.1. We also cover how to implement custom JWT authentication with custom JWT middleware and a custom authorize attribute.
Published:

Node.js - Hash and Verify Passwords with Bcrypt

This is a quick example of how to hash and verify passwords in Node.js using the bcryptjs password hashing library which is a pure JavaScript implementation of the bcrypt password hashing function.
Published:

Angular 10 - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration, login and CRUD functionality with Angular 10. Includes boilerplate app and videos on how to deploy to AWS and Azure.
Published:

ASP.NET Core 3.1 - Hash and Verify Passwords with BCrypt

A quick example of how to hash and verify passwords ASP.NET Core 3.1 using the BCrypt.Net-Next password hashing library which is a C# implementation of the bcrypt password hashing function.
Published:

Angular 10 - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with Angular 10
Published:
Last updated:

ASP.NET Core 3.1 - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate authentication API with ASP.NET Core 3.1 that includes email sign up & verification, authentication & role based authorization, forgot password & reset password functionality, account management (CRUD) routes with role based access control, and Swagger documentation.
Published:
Last updated:

Node.js + MongoDB API - JWT Authentication with Refresh Tokens

How to implement JWT authentication with refresh tokens in an Node.js + MongoDB API. Includes example client app built with Angular.
Published:

ASP.NET Core 3.1 API - JWT Authentication with Refresh Tokens

How to implement JWT authentication with refresh tokens in an ASP.NET Core 3.1 API. Includes example client app built with Angular.
Published:
Last updated:

Angular 9 - JWT Authentication with Refresh Tokens

An example of how to implement JWT authentication with refresh tokens in Angular 9.
Published:

Angular 9 - Role Based Authorization Tutorial with Example

An example of how to implement role based authorization / access control in Angular 9.
Published:
Last updated:

Node + Mongo - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate authentication API with Node.js and MongoDB that includes email sign up & verification, authentication & role based authorization, forgot password & reset password functionality, account management (CRUD) routes with role based access control, and Swagger documentation.
Published:

Angular 9 - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with Angular 9
Published:

Angular 9 - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration, login and CRUD functionality with Angular 9. Includes boilerplate app and videos on how to deploy to AWS and Azure.
Published:
Last updated:

React Boilerplate - Email Sign Up with Verification, Authentication & Forgot Password

How to build a boilerplate authentication system in React including email sign up & verification, authentication & role based authorization, forgot password & reset password functionality, view & update my profile section, and admin only section for managing all user accounts.
Published:
Last updated:

Angular 9 - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with Angular 9
Published:
Last updated:

React Hooks + Redux - User Registration and Login Tutorial & Example

Tutorial on how to implement user registration and login functionality with React Hooks and Redux, including a boilerplate demo application and video on how to deploy to AWS.
Published:
Last updated:

ASP.NET Core 3.1 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in ASP.NET Core 3.1 with C#. Includes example client apps built with Angular, React and Vue.js.
Published:
Last updated:

ASP.NET Core 3.1 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in ASP.NET Core 3.1 & C#. Includes example client apps built with Angular, React and Vue.
Published:
Last updated:

ASP.NET Core 3.1 - Simple API for Authentication, Registration and User Management

Simple boilerplate ASP.NET Core 3.1 API that supports User Registration, Login and User Management. Uses SQLite in development & SQL Server in production and includes example client apps built with React, Angular & Vue.
Published:
Last updated:

ASP.NET Core 3.1 - JWT Authentication Tutorial with Example API

How to implement custom JWT authentication in ASP.NET Core 3.1 with C#. Includes example client apps built with React, Angular & Vue.
Published:

Angular 8 - Role Based Authorization Tutorial with Example

A Custom Authentication and Role Based Authorization / Access Control Example built with Angular 8, TypeScript and Angular CLI
Published:

Angular 8 - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with Angular 8 and the Angular CLI
Published:

Angular 8 - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with Angular 8 and the Angular CLI
Published:

Angular 7 Tutorial Part 7 - Migrating to an Angular CLI Project

In part 7 of this Angular 7 tutorial series we're going to copy/migrate the example application from a custom webpack project into an Angular CLI project. This part of the series is optional for those of you that prefer to build apps with the Angular CLI rather than directly with webpack, or if you're just interested in seeing how to migrate an Angular webpack app to the Angular CLI.
Published:
Last updated:

Angular 8 - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration and login functionality with Angular 8, TypeScript and Webpack 4. Including a boilerplate demo application and video on how to deploy to AWS.
Published:

Angular 7 Tutorial Part 6 - Home Page & Alert Component

In part 6 of this Angular 7 tutorial series we're going to update the home page to demonstrate fetching, displaying and deleting users from secure api endpoints. We'll also simplify the way alert messages are displayed by creating a centralized alert service and alert component.
Published:

Angular 7 Tutorial Part 5 - Registration Form & User Service

In part 5 of this Angular 7 tutorial series we're going to add a registration form and user service for registering new users.
Published:

Angular 7 Tutorial Part 4 - Login Form, Authentication Service & Route Guard

In part 4 of this Angular 7 tutorial series we're going to implement authentication with a login form, authentication service and an Angular route guard. We'll also setup a fake backend so we can test the example application without an API.
Published:

React + RxJS (without Redux) - JWT Authentication Tutorial & Example

A Custom JWT Authentication Example built with React + RxJS (without Redux) and Webpack 4
Published:

Vue.js - Role Based Authorization Tutorial with Example

A Custom Authentication and Role Based Authorization / Access Control Example built with Vue.js and Webpack 4
Published:

React - Role Based Authorization Tutorial with Example

A Custom Authentication and Role Based Authorization / Access Control Example built with React and Webpack 4
Published:

ASP.NET Core 2.2 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in ASP.NET Core 2.2 & C#. Includes example client apps built with Angular, React and Vue.
Published:

Deploy to Heroku - Node + Mongo API for Authentication, Registration and User Management

A quick tutorial to go through the steps to deploy a Node.js + MongoDB Authentication API to the Heroku Cloud and test it with Postman.
Published:
Last updated:

Node.js - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in Node.js & JavaScript. Includes example client apps built with Angular, React and Vue.
Published:

Angular 7 - Role Based Authorization Tutorial with Example

A Custom Authentication and Role Based Authorization / Access Control Example built with Angular 7, TypeScript and Webpack 4
Published:

Angular 7 - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with Angular 7, TypeScript and Webpack 4
Published:
Last updated:

Angular 7 - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration and login functionality with Angular 7, TypeScript and Webpack 4
Published:
Last updated:

NodeJS - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in Node.js with JavaScript. Includes example client apps built with React, Angular & Vue.
Published:

Vue.js - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with Vue.js 2, JavaScript and Webpack 4
Published:

React - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with React 16, JavaScript and Webpack 4
Published:
Last updated:

ASP.NET Core 2.2 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in ASP.NET Core 2.2 with C#. Includes example client apps built with Angular, React and Vue.js.
Published:

Angular 6 - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with Angular 6, TypeScript and Webpack 4
Published:
Last updated:

ASP.NET Core 2.2 - JWT Authentication Tutorial with Example API

How to implement JWT authentication in ASP.NET Core 2.2 with C#. Includes example client apps built with React, Angular & Vue.
Published:
Last updated:

Node.js + Express 4 - JWT Authentication Tutorial with Example API

How to implement JWT authentication in Node.js with Express.js. Includes example client apps built with React, Angular, Vue & Blazor.
Published:
Last updated:

Vue.js + Vuex - User Registration and Login Tutorial & Example

Tutorial with example of how to implement user registration and login functionality with Vue.js, Vuex and Webpack 4
Published:

Vue.js + Vuex - JWT Authentication Tutorial & Example

Tutorial on how to implement JWT Login Authentication with Vue.js and Vuex, including a working demo login page.
Published:
Last updated:

ASP.NET Core 2.2 - Simple API for Authentication, Registration and User Management

A clean and simple custom ASP.NET Core API for User Registration, Login with JWT Authentication and User Management.
Published:
Last updated:

NodeJS + MongoDB - Simple API for Authentication, Registration and User Management

A clean and simple custom NodeJS API for Login, Registration and User Management. Includes example client apps built with React, Angular & Vue, and instructions on testing with Postman and deploying to AWS and Heroku.
Published:

Angular 6 - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with Angular 6, TypeScript and Webpack 4
Published:
Last updated:

Angular 6 - User Registration and Login Example & Tutorial

Tutorial with example of how to implement user registration and login functionality with Angular 6, TypeScript and Webpack 4
Published:
Last updated:

React + Redux - JWT Authentication Tutorial & Example

Tutorial on how to implement JWT Authentication with React and Redux.
Published:
Last updated:

React + Redux - User Registration and Login Tutorial & Example

Tutorial on how to implement user registration and login functionality with React and Redux, including a boilerplate demo application and video on how to deploy to AWS.
Published:

Angular 2 - Redirect to Previous URL after Login with Auth Guard

How to redirect a user back to the previous (original) URL after logging into an Angular 2 application.
Published:
Last updated:

Angular 2/5 User Registration and Login Example & Tutorial

An example and tutorial of how to implement user registration and login functionality with Angular 2/5 & TypeScript
Published:
Last updated:

Angular 2/5 JWT Authentication Example & Tutorial

A Custom JWT Authentication Example written in Angular 2/5 and TypeScript
Published:

AngularJS JWT Authentication Example & Tutorial

An AngularJS login tutorial & example that uses JWT authentication
Published:

MEAN Stack User Registration and Login Example & Tutorial

A complete example & tutorial on how to implement user registration and login functionality with the MEAN stack.
Published:
Last updated:

AngularJS User Registration and Login Example & Tutorial

An example and tutorial of how to implement user registration and login functionality with AngularJS
Published:

Web API 2 + Angular - Basic HTTP Authentication Example

A simple login example using AngularJS on the front end and ASP.NET Web API 2 on the back end.
Published:

AngularJS Basic HTTP Authentication Example

An example of how to setup a simple login page with HTTP Basic Authentication using AngularJS, and also keep the user logged in after the page is refreshed.
Published:

ASP.NET Web API 2 - Enum Authorize Attribute

This post shows you how to create a custom authorization attribute which allows you to pass in a list of enums as parameters to restrict access by role. I'm using this attribute on the controllers of a RESTful Web API built with ASP.NET WEB API 2.
Published:

ASP.NET MVC3 + Altairis Web Security Toolkit

In this post I'll show you how to install and configure the Altairis Web Security Toolkit in an MVC3 application. The Altairis Web Security Toolkit is a simple, easy to use ASP.NET Membership Provider with a clean table structure. It's much nicer to work with than the default ASP.NET Membership Provider.
Supported by