Bankscrap adapter for Shinsei.
This adapter uses the Shinsei PowerDirect web interface and scraps Javascript global variable values to get its data.
Contact: open an issue or email us at bankscrap@protonmail.com.
Add this line to your application's Gemfile:
gem 'bankscrap-shinsei'
And then execute:
$ bundle
Or install it yourself as:
$ gem install bankscrap-shinsei
$ bankscrap balance Shinsei --credentials=account:ACCOUNT_NUMBER password:PASSWORD pin:PIN security_grid=SECURITY_GRID
$ bankscrap transactions Shinsei --credentials=account:ACCOUNT_NUMBER password:PASSWORD pin:PIN security_grid:SECURITY_GRID
SECURITY_GRID
must be provided in the format of lines, separated by commas.
Example:1234567890,ABCDFEFGHI,JKLMNOPQRS,TUVWXYZ123
For more details on usage instructions please read Bankscrap readme.
require 'bankscrap-shinsei'
shinsei = Bankscrap::Shinsei::Bank.new(account: ACCOUNT_NUMBER, password: PASSWORD, pin: PIN, security_grid: SECURITY_GRID)
- Fork it ( https://github.com/bankscrap/bankscrap-shinsei/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
shinseibank-ruby original scripts were written by @binzume, then improved and refactored to make a gem by @knshiro and @davidstosik.