Skip to main content

Configuring JWT Authorization in Swagger UI with Spring Boot

· 3 min read
Sahil Phondekar
Sr. Software Engineer @Everestek

In a secure REST API, it's important to authenticate requests — especially when using JWT tokens. When integrating Swagger UI using springdoc-openapi, we can also configure it to include a JWT Authorization header so developers can test secured endpoints easily.

In this tutorial, we’ll walk through how to configure JWT Bearer Authorization in Swagger UI step by step.

Tools I Use for Generating & Testing Valid SAML Responses

· 5 min read
Sahil Phondekar
Sr. Software Engineer @Everestek

In today's world of web applications, security and seamless user authentication are paramount. Single Sign-On (SSO) solutions are becoming the standard method for managing user access to multiple applications. One of the most widely adopted protocols for SSO is SAML (Security Assertion Markup Language). SAML allows for the secure exchange of authentication and authorization data between Identity Providers (IdPs) and Service Providers (SPs).

Understanding SSO Techniques - IdP-Initiated vs. SP-Initiated Login

· 3 min read
Sahil Phondekar
Sr. Software Engineer @Everestek

Single Sign-On (SSO) is a user authentication process that allows individuals to log in once and access multiple applications without needing to re-enter credentials. SAML (Security Assertion Markup Language) is one of the most widely used protocols for implementing SSO. When deploying SSO using SAML, there are two primary methods: IdP-Initiated Login and SP-Initiated Login.

Understanding SSO and SAML - A Beginner's Guide

· 2 min read
Sahil Phondekar
Sr. Software Engineer @Everestek

In today’s digital world, managing multiple usernames and passwords for different applications can be frustrating. That’s where Single Sign-On (SSO) and Security Assertion Markup Language (SAML) come in. These technologies streamline authentication, making it easier and more secure for users to access various applications with a single login.

Stripe Payment Element in React & Spring Boot

· 4 min read
Sahil Phondekar
Sr. Software Engineer @Everestek

Accepting online payments efficiently is essential for any modern business. Stripe offers a Payment Element, a prebuilt UI component that simplifies checkout by supporting multiple payment methods in a single integration. In this blog, we’ll walk through integrating Stripe’s Payment Element with a React frontend and a Spring Boot backend, ensuring a smooth and secure payment experience.