25 lines
731 B
JavaScript
25 lines
731 B
JavaScript
const express = require('express');
|
|
const got = require('got');
|
|
const config = require('./config');
|
|
const encrypt = require('./encrypted');
|
|
const app = express();
|
|
const port = 9999;
|
|
|
|
app.get('/', async(req, res) => {
|
|
(async() => {
|
|
const { body } = await got.post('http://app.etiquetaselectronicas.com:9999/user/login', {
|
|
json: {
|
|
account: config.user,
|
|
loginType: 3,
|
|
password: await encrypt.encryptPassword(config.password)
|
|
},
|
|
responseType: 'json'
|
|
});
|
|
console.log(body)
|
|
res.end(JSON.stringify(body));
|
|
})();
|
|
});
|
|
|
|
app.listen(port, () => {
|
|
console.log(`Example app listening at http://localhost:${port}`)
|
|
}); |