Dwolla.Client
is available on Nuget with source code available on our GitHub page.
DwollaClient
by specifying which environment you will be using—Production or Sandbox—via the isSandbox
boolean flag.
webhooks
, events
, webhook-subscriptions
) or the Dwolla Account that owns the application (accounts
, customers
, funding-sources
, etc.). Application tokens are obtained by using the client_credentials
OAuth grant type:
refresh_token
. When it expires, generate a new one using AppTokenRequest
.
DwollaClient
, currently, you can make low-level HTTP requests.
GetAsync()
, PostAsync()
, UploadAsync()
and DeleteAsync()
methods with the available request models. These methods will return responses that can be mapped to one of the available response models.
Authorization
), you can pass a Headers
object as the last argument.
GET
POST
DELETE
DWOLLA_APP_KEY
and DWOLLA_APP_SECRET
environment variable.
app_key
and app_secret
build arguments in Dockerfile. Finally, you will need to build and run the Docker image. More information on this topic can be found on Docker’s website, or you can find some example commands below.