Can we revoke saml token in azure aad .i got to see revoking refresh tokens documentations but i never saw any document for revoking saml token.is there any possibility to revoke saml token from azure AAD ?
Asked
Active
Viewed 234 times
0
-
Could you include more details like what you tried? – Sridevi Sep 28 '22 at 12:32
1 Answers
0
There is no mechanism for revocation in Azure (or most SAML implementations). Each SAML token has a configurable lifetime defined by NotBefore
and NotOnOrAfter
. The default in AAD is a one-hour lifetime.
Azure also supports Single Sign-out.
These are the only mechanisms built into Azure. You could might be able to get better controls with some of the APIs, but this is what you get out of the box.

Andrew K.
- 3,240
- 12
- 23