mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-21 13:42:06 +00:00
22 lines
493 B
JavaScript
22 lines
493 B
JavaScript
#! /usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const client = require('./getClient')();
|
|
const { Orders } = require('../index');
|
|
|
|
// The bank keys must have been already saved
|
|
client.send(Orders.HKD)
|
|
.then((resp) => {
|
|
console.log('Response for HKD order %j', resp);
|
|
if (resp.technicalCode !== '000000')
|
|
throw new Error('Something went wrong');
|
|
|
|
const data = Buffer.from(resp.orderData);
|
|
console.log(data.toString('utf8'));
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|