Oauth2TokenOnly

flitter-auth/middleware/Oauth2TokenOnly~ Oauth2TokenOnly

Allows a request to proceed if a valid OAuth2 bearer token was provided. If not, return a JSON-encoded error message.


Constructor

new Oauth2TokenOnly()

Extends

Members

(private) _di_allow_defer :boolean

If true, the injector will defer the class if the class requests any services that the container is missing. These services are filled in later and added to the prototype and any instances. True by default.

Type:
  • boolean

(private) _di_deferred_instances :Array.<module:flitter-di/src/Injectable~Injectable>

Collection of instances of this class that need to have the deferred service instances injected into them when the deferred services are finally provided.

(private) _di_deferred_services :Array.<string>

List of services that were deferred and not provided at the time of injection.

Type:
  • Array.<string>

Methods

test(req, res, next, argsopt) → {*}

Runs the middleware's test. Allows the request to proceed only if a valid OAuth2 bearer token was provided.

Parameters:
Name Type Attributes Default Description
req express/request

the request

res express/response

the response

next function

the next function in the stack

args object <optional>
{}

optional args

Returns:
Type
*