Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pintov/1c-fints
FinTS / HBCI implementation in 1C:Enterprise
https://github.com/pintov/1c-fints
Last synced: about 2 months ago
JSON representation
FinTS / HBCI implementation in 1C:Enterprise
- Host: GitHub
- URL: https://github.com/pintov/1c-fints
- Owner: pintov
- License: lgpl-3.0
- Created: 2017-03-27T09:07:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-22T10:41:59.000Z (almost 5 years ago)
- Last Synced: 2024-08-01T05:19:46.074Z (5 months ago)
- Language: 1C Enterprise
- Homepage:
- Size: 80.1 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-1c - 1C и HBCI
- awesome-1c - 1C и HBCI
README
1C:Enterprise 8 FinTS / HBCI
=======This is a pure-1C implementation of FinTS (formerly known as HBCI), an
online-banking protocol commonly supported by German banks.Limitations
-----------* Only FinTS 3.0 is supported
* Only PIN/TAN authentication is supported, no signature cards
* Only a number of reading operations are currently supportedUsage
-----```bsl
Client = FinTS.CreateClient(
"12345678", // Your bank's BLZ
"test1", // User ID
"12345", // PIN
"http://127.0.0.1:3000/cgi-bin/hbciservlet");
Accounts = FinTS.GetSepaAccounts(Client);
Statement = FinTS.GetStatement(Client, accounts[0], '20010101', CurrentDate());
```Credits and License
-------------------Author: Vasily Pintov
License: LGPL
This is a quite close port of the [python-fints](https://github.com/raphaelm/python-fints)
implementation that was released by Raphael Michel under the LGPL license.
Thanks for your work!