Questions tagged [single-sign-on]

Introducing Unified Access, an innovative solution facilitating seamless authentication sharing across diverse systems.

Is it possible to share the passport.js session from one server to access multiple others?

I am currently utilizing passport.js in conjunction with an express server. The example repository is running on port 3000. My goal is to enable the usage of port 3000 for passport login, similar to the example, while establishing a session that can work ...

Transform the website's SSO redirect POST method from SP-initiated to IdP-initiated SSO POST

In the past, I have relied on simplesamlphp for SP-Initiated SSO Redirect when integrating our third-party applications. However, our most recent client opts for IdP-Initiated SSO instead. They provided me with this informative page that explains the conc ...

Is the Okta SDK compatible with all identity providers?

I am looking to incorporate a wide range of Identity providers into my app, such as Auth0 SSO OIDC, Onelogin SSO OIDC, Google SSO OIDC, and others. Is it possible to use this solution to make that happen? https://github.com/okta/okta-auth-js ...

Inter-SP Ajax Requests for SAML/SSO Communication

I'm feeling overwhelmed by the complexity of SSO/SAML and need some help. I am currently working on a project that involves setting up a SSO identity provider using shibboleth. We have successfully implemented SSO and are able to authenticate through one ...

Unable to successfully log out from next-auth using the Keycloak provider

I am currently using next-auth with my Next.js application to handle authentication. Here is how I have configured it: .... export default NextAuth({ // Configure one or more authentication providers providers: [ KeycloakProvider({ id: 'my-ke ...

Creating an LTPA2 token through SSO Login within a NodeJS Application

Dealing with a Node application that has single sign-on capabilities, I am in need of calling various REST APIs from an IBM Websphere Java project utilizing Liberty Profile. These REST APIs require a LTPA(LTPA2) Token to be included in the request for secu ...

Encountering a "Not Found" error (404) for saml2-acs.php while setting up SimpleSAMLphp with Microsoft Azure Directory SSO through SAML2 integration

I have set up a link in my web directory that redirects https://resolute.organization.in/sso to the simplesaml directory located at /var/www/simplesamlphp/www Here is my configuration page for simpleSAML: https://i.stack.imgur.com/g17wC.png When testing ...

Implementing single sign-on across different domains with an express server, react client, and redirect functionality

To tackle the challenge at hand, I am working on developing a web application that involves a form submission to my express server. The process includes generating a token from an external endpoint post using the form value, utilizing this token from an ex ...

Protect an API with React utilizing CAS (Centralized Authentication Service) for front end sign in and Spring Boot for backend and making Rest API requests

Currently, I have successfully implemented CAS to secure the frontend of my React app using the package found here: https://www.npmjs.com/package/react-cas-client Now my aim is to secure the backend as well and restrict access to API calls from the app by ...

What steps can I take to stop an AngularJS route from attempting to reauthenticate with my server-side SSO?

I created a complex AngularJS application with a routing configuration that includes specific templates for different pages. The issue I'm facing is related to the Single Sign-On (SSO) software on my webserver. This SSO system requires me to log in and set ...

Angular-oauth2-oidc does not successfully retrieve the access token when using OAuth2 and SSO

Here's an issue I'm facing: I've been attempting to integrate SSO and OAuth2 flow using angular-oauth2-oidc. When testing with POSTMAN and ThunderClient in VS Code, I managed to receive the correct response (the access_token). However, I am ...

How to Implement Smooth User Authentication and Registration in a Laravel/Next.js Multi-tenant Application

Currently, I am working on a way to implement user authentication in a multitenant application without requiring any visible user interactions. Specifically, my goal is to seamlessly log in or register users into my helpdesk app when they are already logge ...

Is it feasible to implement Single Sign-On for a NodeJs application using NTLM-LDAP integration?

I am faced with the challenge of setting up Single Sign On for my Node application within an Active Directory Domain Network. Both the application and the clients trying to access it are on the same network, which should simplify the process. While I hav ...

What are some effective methods for integrating a Single Sign-On (SSO) strategy across diverse application platforms?

We are currently operating three distinct applications. The first one utilizes NodeJS, MySQL, Express, and Dojo on the client side with its custom manual authentication system. The second application is built with NodeJS, MySQL, Express, and AngularJS for ...