Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 536 Bytes

File metadata and controls

50 lines (36 loc) · 536 Bytes
code type title
true
page
getStrategies

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"
  ]
}