Jonny
Jonny

Reputation: 854

Acquire a SAML token in MSAL.js

I can acquire a JWT token using the SPA JavaScript Microsoft Authentication Library using acquireTokenSilent.

Instead of getting a signed JWT token, is there a way I can get a signed XML SAML token?

I have a backend application (out of my control to change) which is setup to receive SAML and will read the tokens and check them against a certificate.

Upvotes: 1

Views: 2020

Answers (1)

MSAL is a client side library that supports OAuth and OpenID Connect and it is not designed for handling SAML.

Also ,Single Sign-On SAML protocol and Federated Authentication with a SAML Identity Provider should be good starting points to implement SAML directly.

Upvotes: 1

Related Questions