A superagent plugin that adds D2L auth headers
var request = require('superagent'),
auth = require('superagent-d2l-session-auth')();
request
.get('/d2l/api/lp/1.5/users/whoami')
.use(auth)
.end(function(err, res) {
if(err) {
console.log('I always check for errors! ' + err.status + ' ' + err.response);
return;
}
var user = res.body;
console.log('Hello, ' + user.FirstName + ' ' + user.LastName);
});
For strictly iframed applications, consider requiring superagent-d2l-session-auth/framed
instead.
The export is a factory function which creates the superagent plugin. The
result of this call is what should be passed into .use
.
You may optionally specify scope(s) desired on the requested token. This option is passed directly into the backing frau-jwt library.
You may optionally specify an additional host which is trusted and which authorization tokens should be sent to. This should be generally unnecessary, and should only be an instance of Brightspace.
var auth = require('superagent-d2l-session-auth')({
trustedHost: 'school.brightspace.com'
});
request
.get('https://school.brightspace.com/api')
.use(auth)
.end(/* ... */);
-
Fork the repository. Committing directly against this repository is highly discouraged.
-
Make your modifications in a branch, updating and writing new unit tests as necessary in the
spec
directory.-
Ensure that all tests pass with
npm test
-
rebase
your changes against master. Do not merge. -
Submit a pull request to this repository. Wait for tests to run and someone to chime in.
-
-
This repository is configured with EditorConfig and ESLint rules.