...
Field Name | Type | Mandatory | Description |
---|---|---|---|
hashIterations | Number | Hashing Iteration value used by oAuth hasher to encrypt/compare passwords | |
seedLength | Number | Seed Length value used by oAuth hasher to encrypt/compare passwords |
3rd party login configuration
...
Info | ||
---|---|---|
| ||
In provision |
OAuth allows third-party login via one of the below methods:
- Passport Login: Define application keys for passport integration. Currently supporting Azure, Github, Twitter, Facebook, and Google. Got to the link for more information and an example of the configuration.
- OpenAM login: SSO (Single Sign-On).
- LDAP (Lightweight Directory Access Protocol) login: Active directory login.
Configuration Sample
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{ "oauth": { "hashIterations": 1024, //used by hasher "seedLength": 32, //used by hasher } } |
...