From bb44a7e252ee240193c0f07926dcbc233eb04626 Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Wed, 16 Sep 2020 14:02:43 -0600 Subject: [PATCH] swapped out public_key for public_token --- connection/connections/plaid_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connection/connections/plaid_client.py b/connection/connections/plaid_client.py index b73e66c..e62caed 100755 --- a/connection/connections/plaid_client.py +++ b/connection/connections/plaid_client.py @@ -41,7 +41,7 @@ class Connection(AbstractConnectionClient): self.client = plaid.Client( client_id=self.PLAID_CLIENT_ID, secret=self.PLAID_SECRET, - public_key=self.PLAID_PUBLIC_KEY, + public_token=self.PLAID_PUBLIC_KEY, environment=self.PLAID_ENV, api_version='2019-05-29') public_key = self.credentials.get('public_token')