GetStrategies #
Gets all authentication strategies registered in Kuzzle.
Arguments #
public CompletableFuture<ArrayList<String>> getStrategies()
throws NotConnectedException, InternalException
Return #
An ArrayList representing the available authentication strategies.
Usage #
ConcurrentHashMap<String, Object> credentials = new ConcurrentHashMap<>();
credentials.put("username", "foo");
credentials.put("password", "bar");
kuzzle.getAuthController().login("local", credentials).get();
ArrayList<String> result = kuzzle.getAuthController().getStrategies().get();
Edit this page on Github(opens new window)