2019-10-02 21:17:00 +00:00
|
|
|
#! /usr/bin/env node
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const ebics = require('../index');
|
|
|
|
|
|
|
|
const client = new ebics.Client({
|
|
|
|
url: 'https://ebics.server',
|
|
|
|
partnerId: 'PARTNER',
|
|
|
|
userId: 'USER',
|
|
|
|
hostId: 'HOST',
|
2019-10-02 21:21:27 +00:00
|
|
|
passphrase: 'test', // keys-test will be encrypted with this passphrase
|
2019-10-02 21:17:00 +00:00
|
|
|
keyStorage: ebics.fsKeysStorage('./keys-test'),
|
|
|
|
});
|
|
|
|
|
|
|
|
// New keys will be generated and saved in ./keys-test
|
|
|
|
client.send(ebics.Orders.INI)
|
|
|
|
.then((resp) => {
|
2019-11-19 13:48:26 +00:00
|
|
|
console.log('Response for INI order %j', resp);
|
2019-10-02 21:17:00 +00:00
|
|
|
return client.send(ebics.Orders.HIA);
|
|
|
|
})
|
|
|
|
.then((resp) => {
|
2019-11-19 13:48:26 +00:00
|
|
|
console.log('Response for HIA order %j', resp);
|
2019-10-02 21:17:00 +00:00
|
|
|
if (resp.technicalCode !== '000000')
|
|
|
|
throw new Error('Something might went wrong');
|
|
|
|
|
|
|
|
console.log('Public keys should be sent to bank now. See examples/bankLetter.js');
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error(err);
|
|
|
|
process.exit(1);
|
|
|
|
});
|