0.1.3 • Published 10 years ago

sbis3-bl-request v0.1.3

Weekly downloads
77
License
-
Repository
-
Last release
10 years ago

WI.SBIS BL Request Helper

Что это?

Модуль-обертка для выполенния запросов к бизнес-логике WI.SBIS

Установка

$ npm install sbis3-bl-request

Использование

var
  bl = require('sbis3-bl-request'),
  options = {
      hostname: 'http://localhost/',
      path: '/admin/service/',
      method: 'POST'
  },
  params = {
      method: 'Конфигурация.Получить',
      data: {
          'Хост': '',
          'Порт': '',
          'Каталог': ''
      }
  },
  ext = {
      'X-NewHeader': '0010100101'
  };
bl.doRequest(options, params, ext).then(function (response) {
  if (response.error) {
      return new Error(response.error.message);
  }
  console.log(response);
});
0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago