-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget-token.js
More file actions
48 lines (40 loc) · 955 Bytes
/
get-token.js
File metadata and controls
48 lines (40 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
'use strict';
const axios = require('axios');
/**
* Obtiene un token OAuth desde la API de AWS
* @returns {Promise<string>} Token OAuth
*/
async function getToken(params) {
const url = params.url;
const headers = {
'Content-Type': 'application/json'
};
const body = JSON.stringify({
username: params.user,
password: params.password
});
try {
const response = await axios({
method: 'post',
url: url,
headers: headers,
data: body
});
const token = response.data?.token;
if (!token) {
throw new Error('Token not found in response');
}
return token;
} catch (error) {
console.error('❌ Error getting token:', error.message);
if (error.response) {
console.error('Response status:', error.response.status);
console.error('Response data:', error.response.data);
}
throw error;
}
}
// Exportar las funciones
module.exports = {
getToken
};