@loopback/docs
Version:
Documentation files rendered at [https://loopback.io](https://loopback.io)
42 lines (30 loc) • 1.32 kB
Markdown
lang: en
title: 'API docs: authentication.authenticationbindings.metadata'
keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI
sidebar: lb4_sidebar
editurl: https://github.com/loopbackio/loopback-next/tree/master/packages/authentication
permalink: /doc/en/lb4/apidocs.authentication.authenticationbindings.metadata.html
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/authentication](./authentication.md) > [AuthenticationBindings](./authentication.authenticationbindings.md) > [METADATA](./authentication.authenticationbindings.metadata.md)
## AuthenticationBindings.METADATA variable
Key used to inject authentication metadata, which is used to determine whether a request requires authentication or not.
<b>Signature:</b>
```typescript
METADATA: BindingKey<AuthenticationMetadata[] | undefined>
```
## Example
```ts
class MyPassportStrategyProvider implements Provider<Strategy | undefined> {
constructor(
@inject(AuthenticationBindings.METADATA)
private metadata?: AuthenticationMetadata[],
) {}
value(): ValueOrPromise<Strategy | undefined> {
if (this.metadata?.length) {
// logic to determine which authentication strategy to return
}
}
}
```