You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two issues were discovered when testing that prohibit the use of the app beyond the 'Link your Bank Account' button.
Issue 1 - After inputting API Keys I received an error message in the debug window advising me of missing parameters, specifically the inclusion of "country_codes". Looking at the API documentation and code I pinpointed it to you "institutions/get" call in the PeriodicFetchDataStorage Class -> public let institutions variable. This seems to be missing an array of country_codes. To fix this issue I just added "country_codes": ["US"] to string. Code attached.
Issue 2 - After fixing the above issue I came across another related to the use of the public key. Tracing it to your PlaidManager class it seems the use of PublicKey is no longer supported by Plaid and has since been depreciated. The API now uses Public_Token. Unable to pinpoint fix for this.
The text was updated successfully, but these errors were encountered:
Two issues were discovered when testing that prohibit the use of the app beyond the 'Link your Bank Account' button.
Issue 1 - After inputting API Keys I received an error message in the debug window advising me of missing parameters, specifically the inclusion of "country_codes". Looking at the API documentation and code I pinpointed it to you "institutions/get" call in the PeriodicFetchDataStorage Class -> public let institutions variable. This seems to be missing an array of country_codes. To fix this issue I just added "country_codes": ["US"] to string. Code attached.
PeriodicFetchDataStorage (updated).txt
Issue 2 - After fixing the above issue I came across another related to the use of the public key. Tracing it to your PlaidManager class it seems the use of PublicKey is no longer supported by Plaid and has since been depreciated. The API now uses Public_Token. Unable to pinpoint fix for this.
The text was updated successfully, but these errors were encountered: