express-openid-connect
    Preparing search index...

    Interface OpenidResponse

    The Express.js Response with oidc context added by the auth middleware.

    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.

    interface OpenidResponse {
        oidc: ResponseContext;
    }

    Hierarchy

    • Response
      • OpenidResponse
    Index

    Properties

    Properties

    Library namespace for authentication methods and data.