I’m trying to use Postman to trigger some API calls in our Dwolla Prod environment, but I keep getting 401 Unauthorized responses on every endpoint:
{
"code": "InvalidCredentials",
"message": "Missing or invalid Authorization header."
}
I’m simply trying to generate a bearer token with the https://api.dwolla.com/token
endpoint by using the client_id
and client_secret
from the Dwolla prod dashboard, but alas I still get 401s.
Alternatively, i’ve also tried to set the client_id and client_secret as environment variables instead of using them as params in the Basic Auth fields but no matter what I still get 401s.
The same approach works fine when I use the Dwolla Sandbox env, but it breaks for production. What am I doing wrong?