node-ebics-client/examples/save-bank-keys.js

23 lines
567 B
JavaScript
Raw Permalink Normal View History

2019-10-02 21:26:12 +00:00
#! /usr/bin/env node
'use strict';
2019-12-18 14:48:05 +00:00
const client = require('./getClient')();
2019-12-30 09:36:11 +00:00
const { Orders } = require('../index');
2019-10-02 21:26:12 +00:00
// Client keys must be already generated and send by letter.
// The bank should have enabled the user
2019-12-30 09:36:11 +00:00
client.send(Orders.HPB)
2019-10-02 21:26:12 +00:00
.then((resp) => {
console.log('Response for HPB order %j', resp);
2019-10-02 21:26:12 +00:00
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');
console.log('Received bank keys: %j', resp.bankKeys);
return client.setBankKeys(resp.bankKeys);
})
.catch((err) => {
console.error(err);
process.exit(1);
});