Roshan Shrestharosan-shrestha.com.np·Aug 22, 2024WSO2 IS Integration In Next js Using next-auth.js (Part 1)In the ever-evolving landscape of web development, authentication remains a critical component for building secure and user-friendly applications. WSO2 Identity Server (IS) is a powerful, open-source identity management solution that provides robust ...4 likes·100 readsOAuthNext.js
Nipuna Upekshanipunaupeksha.hashnode.dev·Jul 18, 2024Setting up Email Sending Module for WSO2 Identity Server for Developers 📨When we talk about IAM or Identity and Access Management, we often see the terms MFA(Multi-factor Authentication) and 2FA(Two-factor authentication). When developers need to check certain flows involving service providers and local and outbound authe...Email OTP
Nipuna Upekshanipunaupeksha.hashnode.dev·Jul 17, 2024Writing a Custom Grant Type for WSO2 Identity Server 🔖When we talk about OAuth2 and OpenID Connect(OIDC), we cannot talk about how those two operate by providing access to the client applications without talking about grant types. In simple terms, grant type is a mechanism to provide access to protecte...Custom Component Implementation for WSO2 Identity ServerWSO2
Nipuna Upekshanipunaupeksha.hashnode.dev·Jul 17, 2024Writing a Custom Local Authenticator for WSO2 Identity Server 🖥️The WSO2 Identity Server is mainly comprised of two frameworks, authentication framework and provisioning framework. One of the most important components in the authentication framework is the local authenticators. The local authenticators are used t...Custom Component Implementation for WSO2 Identity ServerWSO2
Nipuna Upekshanipunaupeksha.hashnode.dev·Jul 17, 2024Writing a Custom User Store Manager for WSO2 Identity Server 📦User stores are places where you store user information. However, sometimes, the default user store schema might not work with your use cases. For instance, suppose you have a company that already has a user database and only needs to authenticate th...Custom Component Implementation for WSO2 Identity ServerUser Stores
Nipuna Upekshanipunaupeksha.hashnode.dev·Jul 17, 2024Writing a Custom User Store Listener for WSO2 Identity Server 🫙WSO2 Identity Server allows you to alter user store operations by registering an event listener for them. These listeners are executed at specific points in the user store process, and users can design listeners that implement the logic they want to ...Custom Component Implementation for WSO2 Identity ServerWSO2
Nipuna Upekshanipunaupeksha.hashnode.dev·Jul 16, 2024Writing a Custom Event Handler for WSO2 Identity Server 🔧The eventing framework of the WSO2 Identity Server can be used to trigger events for user operation events like PRE_ADD_USER and POST_ADD_USER. Furthermore, it can also be used to do operations upon a triggered event. For instance, an event handler c...Custom Component Implementation for WSO2 Identity ServerEvent Handlers
Kusal Tharindublog.dtk2globle.com·Apr 21, 2024Essential Steps for Efficiently Troubleshooting WSO2 Identity Server (IS) Component (Part-01)Introduction Overview of WSO2 Application Troubleshooting Troubleshooting complex application frameworks like WSO2 is an essential skill for developers and system administrators. WSO2, a middleware architecture, integrates various components such as ...40 readsWSO2 Basics2Articles1Week
Nipuna Upekshanipunaupeksha.hashnode.dev·Mar 11, 2024OAuth2 and OpenID Connect with WSO2 IS - Part 15🧬 Introduction Form Post Response mode is an additional response mode defined by the OAuth2.0 specification which allows Authorization Response parameters to be sent to clients as HTML form values via an HTTP POST request. Normally, if you are using...OAuth2 and OpenID Connect with WSO2 ISForm Post Response
Nipuna Upekshanipunaupeksha.hashnode.dev·Mar 11, 2024OAuth2 and OpenID Connect with WSO2 IS - Part 14🧬 Introduction We have already discussed how you can gain access via the Authorization Code Grant flow. In this article, we will look at an extension of that, how to use Authorization Code Grant flow with PKCE. PKCE is an acronym for Proof Key for C...OAuth2 and OpenID Connect with WSO2 ISOAuth2