express-gateway-plugin-oauth
Advanced tools
Comparing version 3.2.2 to 3.2.3
{ | ||
"name": "express-gateway-plugin-oauth", | ||
"version": "3.2.2", | ||
"version": "3.2.3", | ||
"description": "Plugin para solicitar autorização do serviço de autenticação remoto.", | ||
@@ -5,0 +5,0 @@ "main": "manifest.js", |
@@ -14,2 +14,8 @@ require('dotenv'); | ||
let headers = actionParams.extra_headers || {}; | ||
headers.Authorization = token; | ||
headers.addAll(extraHarders); | ||
let requestTemplate = { | ||
@@ -20,3 +26,3 @@ url: `http://${process.env['eg.plugin.authentication.' + auth_env | ||
method: "GET", | ||
headers: {"Authorization": token}, | ||
headers: headers, | ||
resolveWithFullResponse: true | ||
@@ -23,0 +29,0 @@ }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6683
41