List all strategies/strategy types
GET/auth/api/login/strategy
Returns all known strategies (strategy types) that are registered in the system
Request
Responses
- 200
All known strategies in the system
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The unique (type) name of the strategy
true
iff instances of this strategy have the theoretical capability of logging in users
true
iff instances of this strategy have the theoretical capability
of providing api tokens to the a sync service
true
if to authenticate using this strategy, a redirect of the users browser is required
false
if sending credentials to the token endpoint is enough
true
iff this strategy allows instances to use implicit signup
to register users automatically if they don't have an account but tried to login
The specification of the data expected in the post body if not using redirect and sending the credentials directly to the token endpoint
The actions that can be performed on the strategy instance
The schema of the instance configuration
[
{
"typeName": "userpass",
"canLoginRegister": true,
"canSync": false,
"needsRedirectFlow": false,
"allowsImplicitSignup": false,
"acceptsVariables": [
{}
],
"updateActions": [
{}
],
"instanceConfigSchema": {}
}
]