euforic / banking.js

The Missing API for Banks - Get all of your transactions and balances using node

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Oregon Community Credit Union "Signon invalid" "Invalid user signon"

nqthqn opened this issue · comments

commented

I am trying to connect to my OCCU account. Using this info and getting

{ xml: '<OFX><SIGNONMSGSRSV1><SONRS><STATUS><CODE>15500</CODE><SEVERITY>ERROR</SEVERITY><MESSAGE>Signon invalid</MESSAGE></STATUS><DTSERVER>20150907232127.798[-4.00:EDT]</DTSERVER><LANGUAGE>ENG</LANGUAGE><FI><ORG>ORCC</ORG><FID>2077</FID></FI></SONRS></SIGNONMSGSRSV1><BANKMSGSRSV1><STMTTRNRS><TRNUID>JBXDbXp045aNqcd5iSRy9kGhNoK50j0x</TRNUID><STATUS><CODE>15500</CODE><SEVERITY>ERROR</SEVERITY><MESSAGE>Invalid user signon</MESSAGE></STATUS></STMTTRNRS></BANKMSGSRSV1></OFX>',
  body: { OFX: { SIGNONMSGSRSV1: [Object], BANKMSGSRSV1: [Object] } },
  header:
   { OFXHEADER: '100',
     DATA: 'OFXSGML',
     VERSION: '102',
     SECURITY: 'NONE',
     ENCODING: 'USASCII',
     CHARSET: '1252',
     COMPRESSION: 'NONE',
     OLDFILEUID: 'NONE',
     NEWFILEUID: 'rHs4jL1ftBsJyE8taXLuy2GvgllDjBC1' } }

This is my javascript:

var Banking = require('banking');
var chalk = require('chalk');
console.log(chalk.green('Connecting...'));

var bank = Banking({
    fid: 2077
  , fidOrg: 'ORCC'
  , url: 'https://www20.onlinebank.com/OROFX16Listener'
  , bankId: 323274461 /* If bank account use your bank routing number otherwise set to null */
  , user: '******'
  , password: '*****'
  , accId: ******** /* Account Number */
  , accType: 'CHECKING' /* CHECKING || SAVINGS || MONEYMRKT || CREDITCARD */
  , ofxVer: 102 /* default 102 */
  , app: 'QWIN' /* default  'QWIN' */
  , appVer: '1700' /* default 1700 */
});


bank.getStatement({start:20140101, end:20151101}, function(err, res){
  if(err) console.log(err)
  console.log(res);
});

I'm sure my credentials are correct. I even tried using my member number instead of my username for user value.

commented

I've read elsewhere that OFX could return this message if you're account is not enrolled in OFX. Will be talking with my credit union.

closing since it is probably a bank issue please reopen if you find its an actual bug.