© 2023 Hashnode
#oauth
Single Sign On (SSO) and Open Authorization (OAuth) are critical technologies commonly used to improve user experience and enhance online applications' security. In this blog post, we'll take a closer…
Explore the essentials of OAuth2.0, and how to take your web applications to the next level by removing the complexities around integrating 3rd party REST APIs in frontend development. OAuth2.0 is one of the most commonly dreaded authoriza…
So what is OAuth? Many of us come into contact with OAuth when browsing around the Web, and most of us aren’t even aware of its existence. OAuth(Open Authentication) is a system that grants third-part…
Introduction : Security is without doubt a very important feature for any public and even private facing service or API and it’s something that you need to pay a lot of attention to get right. In this…
In this tutorial. I will guide you through creating a to-do list web app using Svelte as the front end hosted on GitHub pages, and Supabase as the back end. I will also discuss how to set up an email …
In this blog post, I will talk about what I learned from making a Supabase Svelte project. The plan for making this project is explained in this blog post. I will go over the obstacles I've overcome w…
Authentication is a process where a user has to prove their identity in an application to gain access to a particular resource. There are many authentication strategies. However, the most notable ones…
Let's see how to make a google login system for our flask apps in only 2 minutes. First, Look at the simple app of Flask from flask import Flask,render_template app = Flask(__name__) @app.route('/') d…
As an avid fan of music, spotify api is one of the api's I love to play with. On this article, I'll show how I use Spotify Oauth on my react app. Firstly, we need to create an app on Spotify Api Dashboard for us to have spotify Client ID an…
There are several terms that are used during the discussion which confuse some of the non-tech guys or beginners. Tried to write about it in a very short & simplified way. OAuth2 is an Authorization f…