getStrategies #
Gets the exhaustive list of registered authentication strategies.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/strategies
Method: GET
Other protocols #
{
"controller": "auth",
"action": "getStrategies"
}
Response #
The result is an array of available strategy names:
{
"status": 200,
"error": null,
"action": "getStrategies",
"controller": "auth",
"result": [
"local",
"facebook"
]
}
Edit this page on Github(opens new window)