2019-10-02 21:26:12 +00:00
|
|
|
#! /usr/bin/env node
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const ebics = require('../index');
|
|
|
|
|
|
|
|
const client = new ebics.Client({
|
|
|
|
url: 'https://ebics.server',
|
|
|
|
partnerId: '',
|
|
|
|
userId: '',
|
|
|
|
hostId: '',
|
|
|
|
passphrase: 'test', // keys-test will be decrypted with this passphrase
|
|
|
|
keyStorage: ebics.fsKeysStorage('./keys-test'),
|
|
|
|
});
|
|
|
|
|
|
|
|
// Client keys must be already generated and send by letter.
|
|
|
|
// The bank should have enabled the user
|
|
|
|
client.send(ebics.Orders.HPB)
|
|
|
|
.then((resp) => {
|
2019-11-19 13:48:26 +00:00
|
|
|
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);
|
|
|
|
});
|