Skip to content

Commit

Permalink
docs: refer to correct object on request for express middleware (#3564)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienZD authored Feb 12, 2025
1 parent ba5621b commit 8ac69f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/express.md
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ The following options can be passed when creating a new error handler:

### authenticate()

`express.authenticate(...strategies)` allows to protect an Express middleware with an [authentication service](./authentication/service.md) that has [strategies](./authentication/strategy.md) registered that can parse HTTP headers. It will set the authentication information on the `req` object (e.g. `req.user`). The following example protects the `/hello` endpoint with the JWT strategy (so the `Authorization: Bearer <JWT>` header needs to be set) and uses the user email to render the message:
`express.authenticate(...strategies)` allows to protect an Express middleware with an [authentication service](./authentication/service.md) that has [strategies](./authentication/strategy.md) registered that can parse HTTP headers. It will set the authentication information on the `req.feathers` object (e.g. `req.feathers.user`). The following example protects the `/hello` endpoint with the JWT strategy (so the `Authorization: Bearer <JWT>` header needs to be set) and uses the user email to render the message:

```ts
import { authenticate } from '@feathersjs/express'
Expand Down

0 comments on commit 8ac69f4

Please sign in to comment.