@salte-auth/azure
v3.1.0
Published
A Salte Auth provider for authenticating with Azure AD!
Downloads
661
Readme
Install
$ npm install @salte-auth/azure
Usage
import { SalteAuth } from '@salte-auth/salte-auth';
import { Azure } from '@salte-auth/azure';
import { Redirect } from '@salte-auth/redirect';
/*
* Feel free to try out Salte Auth with this configuration!
*
* It should work with the following domains:
* - glitch.com
* - localhost:8081
*/
const auth = new SalteAuth({
providers: [
new Azure({
url: 'https://login.microsoftonline.com/3f6df7ce-5830-4280-ae97-8e4016d1c6d0',
clientID: 'c679f65f-8070-4719-8798-31c6fc256736'
})
],
handlers: [
new Redirect({
default: true
})
]
});
auth.login('azure');