
Finance::Bank::SCSB::TW - Check Taiawn SCSB bank info

use Finance::Bank::SCSB::TW;
my $rate = Finance::Bank::SCSB::TW::currency_exchange_rate
print YAML::Dump($rate);

This module provides a rudimentary interface to the Fubon eBank banking system at http://www.scsb.com.tw/.
You will need either Crypt::SSLeay or IO::Socket::SSL installed for HTTPS support to work with LWP.

Retrieve the table of foriegn currency exchange rate. All rates are exchanged with NTD. It returns an arrayref of hash with each one looks like this:
{
zh_currency_name => "ç¾éç¾é",
en_currency_name => "USD CASH",
buy_at => 33.06,
sell_at => 33.56
}
Retrieve your NTD balance. id is the 10-digit Taiwan ID. username and password is whatever you defined at the bank.

This is code for online banking, and that means your money, and that means BE CAREFUL. You are encouraged, nay, expected, to audit the source of this module yourself to reassure yourself that I am not doing anything untoward with your banking data. This software is useful to me, but is provided under NO GUARANTEE, explicit or implied.

Kang-min Liu <gugod@gugod.org>
Based on Finance::Bank::LloydTSB by Simon Cozens simon@cpan.org, and Finance::Bank::Fubon::TW by Autrijus Tang autrijus@autrijus.org

Copyright 2003,2004,2005,2006,2007,2008 by Kang-min Liu <gugod@gugod.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.