dwolla-swagger-php
dwolla-swagger-php copied to clipboard
No OAuth
I could not find the code to do an OAuth initiation for Dwolla Direct.
https://docsv2.dwolla.com/#request-user-authorization Shows to use this code
$OAuth = new Dwolla\OAuth();
$OAuth->settings->client_id = $apiKey;
$OAuth->settings->client_secret = $apiSecret;
$url = $OAuth->genAuthUrl("https://myredirect.com/redirect");
But that seems outdated and part of dwolla-php (API v1)
dwolla-swagger-php has OAuthResponse, but that's it
Any help?