multicloud_rule_manager 1.1.68 → 1.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -65,7 +65,7 @@ export default {
|
|
|
65
65
|
try {
|
|
66
66
|
console.log("🔹 Retrieve Datamap in corso..");
|
|
67
67
|
console.log("🔹 Recupero credenziali per alias:", argv.alias);
|
|
68
|
-
|
|
68
|
+
const cred = getAlias(argv.alias);
|
|
69
69
|
|
|
70
70
|
// --- PRIMA CHIAMATA: token ---
|
|
71
71
|
console.log("🔹 Inizio richiesta token...");
|
|
@@ -45,8 +45,7 @@ export default {
|
|
|
45
45
|
{
|
|
46
46
|
method: "GET",
|
|
47
47
|
headers: {
|
|
48
|
-
"Authorization": `Bearer ${access_token}
|
|
49
|
-
"Accept": "application/json"
|
|
48
|
+
"Authorization": `Bearer ${access_token}`
|
|
50
49
|
},
|
|
51
50
|
redirect: "manual"
|
|
52
51
|
}
|
|
@@ -75,8 +74,7 @@ export default {
|
|
|
75
74
|
{
|
|
76
75
|
method: "GET",
|
|
77
76
|
headers: {
|
|
78
|
-
"Authorization": `Bearer ${access_token}
|
|
79
|
-
"Accept": "application/json"
|
|
77
|
+
"Authorization": `Bearer ${access_token}`
|
|
80
78
|
},
|
|
81
79
|
redirect: "manual"
|
|
82
80
|
}
|