SDK
SDK Javascript v6.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

getStrategies #

Gets the exhaustive list of registered authentication strategies.


Copied to clipboard!
getStrategies([options]);

Arguments Type Description
options
object
Query options

options #

Additional query options

Property Type Description Default
queuable
boolean

(true)
Make this request queuable or not

Resolves #

An array of available strategies names.

Usage #

Copied to clipboard!
const credentials = { username: 'foo', password: 'bar' };
try {
  await kuzzle.auth.login('local', credentials);
  const strategies = await kuzzle.auth.getStrategies();
  console.log(strategies);
  /*
    [ 'local', 'facebook' ]
  */
  console.log('Success');
} catch (error) {
  console.error(error.message);
}