TomorrowIdeas / plaid-sdk-php

PHP bindings for the Plaid API
MIT License
111 stars 42 forks source link

Token Exchange #39

Closed karlmonson closed 3 years ago

karlmonson commented 3 years ago

Does this package support exchanging the public_token for a permanent access_token? I can't seem to figure out how to accomplish it with this package, but it's required functionality it seems. Any advice?

brentscheffler commented 3 years ago

It does indeed:

$access_token = $plaid->items->exchangeToken($public_token);
karlmonson commented 3 years ago

Thanks @brentscheffler!