As a python cli infineat user using fetch_transactions to download transactions into my local machine, I want to be able to authorize banks through my mobile browser, so that I can easily open my bank apps to perform the authorization. Also so that I can call fetch_transactions from multiple machines without having to re-authorize.
Acceptance Criteria
A browser page with a single button "Authorize my banks". This button will trigger the authorization process for the banks configured previously.
Bank tokens and other information needed to access bank data, are stored in the cloud.
Python commands that communicates with the bank, are now retrieving bank tokens and other bank information from the cloud, rather than from the local user storage.
Tech Tasks
Auth API tasks:
Specification
CDK Infrastructure
Generate bank token endpoint
Retrieve bank token endpoint
Validate bank token endpoint
Front End tasks:
Typescript Auth API client
New front end page with the "Authorize My Banks" button.
Show clickable bank authorization URL in new front end page.
Python CLI tasks:
Python Auth API client
Switch all python cli commands, requiring bank authorization, to fetch bank authorization information from the new Auth API cloud endpoints.
User Story
As a python cli infineat user using
fetch_transactions
to download transactions into my local machine, I want to be able to authorize banks through my mobile browser, so that I can easily open my bank apps to perform the authorization. Also so that I can callfetch_transactions
from multiple machines without having to re-authorize.Acceptance Criteria
Tech Tasks
Task blockers