getCredentialFields #
Retrieves the list of accepted field names by the specified authentication strategy
getCredentialFields(strategy, [options]);
Property | Type | Description |
---|---|---|
strategy | string | Strategy identifier |
options | object | Query options |
options #
Additional query options
Property | Type (default) | Description |
---|---|---|
queuable | boolean ( true ) | If true, queues the request during downtime, until connected to Kuzzle again |
Resolves #
An array ofr accepted field names.
Usage #
try {
const response = await kuzzle.security.getCredentialFields('local');
console.log(response);
/*
[ 'username', 'password' ]
*/
} catch (e) {
console.error(e);
}
Edit this page on Github(opens new window)