jcribb
03/12/2018, 8:24 PMhttps.request.promise({
method: https.Method.GET,
url: '<https://www.testwebsite.com>'
})
.then(function(response){
log.debug({
title: 'Response',
details: response
});
})
.catch(function(reason) {
log.debug({
title: 'Invalid Request: ',
details: reason
});
})