MircosoftSAMLProvider
Example Configuration
component {
public any function configure(){
return {
"providers" : [
{
// name is optional, can be used to control the redirect uri
// with name: https://your.app.com/cbsso/auth/entra
// without name: https://your.app.com/cbsso/auth/MicrosoftSAMLProvider
name: "entra",
type: "MicrosoftSAMLProvider@cbsso",
// these values are configured with Microsoft and available in your app dashboard
clientId: "YOUR-CLIENT-ID",
clientSecret: "YOUR-CLIENT-SECRET",
authEndpoint: "https://login.microsoftonline.com/YOUR-TENANT-ID/saml2",
expectedIssuer: "https://sts.windows.net/YOUR-TENANT-ID/",
federationMetadataURL: "https://login.microsoftonline.com/YOUR-TENANT-ID/federationmetadata/2007-06/federationmetadata.xml"
}
]
};
}
}Additional Server Configuration
Last updated
Was this helpful?