The Express.js Response with oidc context added by the auth middleware.
oidc
auth
app.use(auth());app.get('/login', (req, res) => { res.oidc.login();}) Copy
app.use(auth());app.get('/login', (req, res) => { res.oidc.login();})
use the native the Response interface of express instead; it has been extended and now includes a built in oidc param.
Response
express
Library namespace for authentication methods and data.
The Express.js Response with
oidc
context added by theauth
middleware.Deprecated
use the native the
Response
interface ofexpress
instead; it has been extended and now includes a built inoidc
param.