@salte-auth/wso2
v3.1.0
Published
A Salte Auth provider for authenticating with WSO2!
Downloads
5
Readme
Install
$ npm install @salte-auth/wso2
Usage
import { SalteAuth } from '@salte-auth/salte-auth';
import { WSO2 } from '@salte-auth/wso2';
import { Redirect } from '@salte-auth/redirect';
const auth = new SalteAuth({
providers: [
new WSO2({
url: 'https://wso2.salte.io',
clientID: '5h3_E8sO839B9DZBkJIOz9RVziQa'
})
],
handlers: [
new Redirect({
default: true
})
]
});
auth.login('wso2');