The query string parser is incorrect for the onSuccess callback. It returns a list of accounts, which is correct, but they have _id fields, rather than id fields. It seems like the regex function to parse the query param isn't splitting by _, or something like that. Plaid expects id, so it isn't working. For now, I'll solve it by changing _id to id myself.
Thanks again for the useful lib! I'm using it with an RN Modal. Super easy setup.
Now we just need Plaid to add an Expo config plugin to get the native library to work with Expo SDK 41...
The query string parser is incorrect for the
onSuccess
callback. It returns a list of accounts, which is correct, but they have_id
fields, rather thanid
fields. It seems like the regex function to parse the query param isn't splitting by_
, or something like that. Plaid expectsid
, so it isn't working. For now, I'll solve it by changing_id
toid
myself.Thanks again for the useful lib! I'm using it with an RN Modal. Super easy setup.
Now we just need Plaid to add an Expo config plugin to get the native library to work with Expo SDK 41...