in provider/lib/utils.js [529:541]
this.authRequest = function(triggerData, options, cb) {
var method = 'authRequest';
authHandler.handleAuth(triggerData)
.then(auth => {
options.auth = auth;
request(options, cb);
})
.catch(err => {
logger.error(method, err);
cb(err);
});
};