Fetch JS wrapper to allow OAuth2 authenticated requests
Based on a fetch.js, and allows creating a authenticated request to an api with oauth2 access_token
. In addition to handling OAuth2 tokens it prevents race conditions between request when token needs to be generated or fetched.
Install from npm
npm install fetch-oauth2 --save
Token storage
Storage takes 3 functions, and all of them are optional and must return a Promise
, but you should pass in at least one of them it depends on the application.
; const storage = ;
fetchToken
is an equivalent to a httpGET
, and canreject
the promise when no token is foundgenerateToken
is an equivalent to a httpPOST
, and should generate a new token
Request
; const oauth2Fetch = ;
setOAuth2Authorization middleware
Handles adding the Authorization: Bearer abc123
header to the request.
authorisationChallengeHandler middleware
Handles responses with expired and invalid token's. When the response is 401, this hook will generate a new token and retry the request using the generated token.
You can optionally pass in a function that tests for the authentication challenge.
A simple url rewrite
Assuming that the api uri's are relative then its easy to add a simple middleware to add the host.
{ return { return ; }} const oauth2Fetch = ;
Contributing
The simplest why is to run test through npm.
npm test
If you would like to use wallaby.js then you need to start the test server.
npm start