Skip to content

Instantly share code, notes, and snippets.

@tbbooher
Created February 12, 2014 12:40
Show Gist options
  • Save tbbooher/8954886 to your computer and use it in GitHub Desktop.
Save tbbooher/8954886 to your computer and use it in GitHub Desktop.
def self.get_institution(financial_institution_name, ofx_client_id=nil, ssl_version=nil)
case financial_institution_name
when 'USAA'
FinancialInstitution.new('USAA',
URI.parse('https://service2.usaa.com/ofx/OFXServlet'),
OFX::Version.new("1.0.2"),
'USAA', '24591', '314074269',
ofx_client_id, ssl_version)
@rpiwally
Copy link

I'm new to ruby. How did this fit in with your .rb file. I have found ofx-parser gem, but the http interface is throwing me off.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment