UNPKG

@loopback/docs

Version:
58 lines (41 loc) 3.97 kB
--- lang: en title: 'API docs: authentication' keywords: LoopBack 4.0, LoopBack 4 sidebar: lb4_sidebar permalink: /doc/en/lb4/apidocs.authentication.html --- <!-- Do not edit this file. It is automatically generated by API Documenter. --> [Home](./index.md) &gt; [@loopback/authentication](./authentication.md) ## authentication package [@loopback/authentication](https://github.com/strongloop/loopback-next/tree/master/packages/authentication) ## Classes | Class | Description | | --- | --- | | [AuthenticationComponent](./authentication.authenticationcomponent.md) | | | [StrategyAdapter](./authentication.strategyadapter.md) | | ## Functions | Function | Description | | --- | --- | | [authenticate(strategyName, options)](./authentication.authenticate.md) | Mark a controller method as requiring authenticated user. | | [getAuthenticateMetadata(controllerClass, methodName)](./authentication.getauthenticatemetadata.md) | Fetch authentication metadata stored by <code>@authenticate</code> decorator. | | [registerAuthenticationStrategy(context, strategyClass)](./authentication.registerauthenticationstrategy.md) | Registers an authentication strategy as an extension of the AuthenticationBindings.AUTHENTICATION\_STRATEGY\_EXTENSION\_POINT\_NAME extension point. | ## Interfaces | Interface | Description | | --- | --- | | [AuthenticateFn](./authentication.authenticatefn.md) | interface definition of a function which accepts a request and returns an authenticated user | | [AuthenticationMetadata](./authentication.authenticationmetadata.md) | Authentication metadata stored via Reflection API | | [AuthenticationStrategy](./authentication.authenticationstrategy.md) | An interface that describes the common authentication strategy.<!-- -->An authentication strategy is a class with an 'authenticate' method that verifies a user's credentials and returns the corresponding user profile. | | [TokenService](./authentication.tokenservice.md) | An interface for generating and verifying a token | | [UserProfile](./authentication.userprofile.md) | interface definition of a user profile http://openid.net/specs/openid-connect-core-1\_0.html\#StandardClaims | | [UserService](./authentication.userservice.md) | A service for performing the login action in an authentication strategy.<!-- -->Usually a client user uses basic credentials to login, or is redirected to a third-party application that grants limited access.<!-- -->Note: The creation of user is handled in the user controller by calling user repository APIs. For Basic auth, the user has to register first using some endpoint like <code>/register</code>. For 3rd-party auth, the user will be created if login is successful and the user doesn't exist in database yet.<!-- -->Type <code>C</code> stands for the type of your credential object.<!-- -->- For local strategy:<!-- -->A typical credential would be: { username: username, password: password }<!-- -->- For oauth strategy:<!-- -->A typical credential would be: { clientId: string; clientSecret: string; callbackURL: string; }<!-- -->It could be read from a local configuration file in the app<!-- -->- For saml strategy:<!-- -->A typical credential would be:<!-- -->{ path: string; issuer: string; entryPoint: string; }<!-- -->It could be read from a local configuration file in the app. | ## Namespaces | Namespace | Description | | --- | --- | | [AuthenticationBindings](./authentication.authenticationbindings.md) | Binding keys used by this component. | ## Variables | Variable | Description | | --- | --- | | [AUTHENTICATION\_METADATA\_KEY](./authentication.authentication_metadata_key.md) | The key used to store log-related via @<!-- -->loopback/metadata and reflection. | | [AUTHENTICATION\_STRATEGY\_NOT\_FOUND](./authentication.authentication_strategy_not_found.md) | | | [USER\_PROFILE\_NOT\_FOUND](./authentication.user_profile_not_found.md) | |