We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a separate function MyAppWeb.GetConfigs for getting credentials from config which returns as:
MyAppWeb.GetConfigs
%{ client_id: "key", client_secret: "secret" }
But when I pass the funtion to Dwolla.Token.get as:
Dwolla.Token.get
Token.get(GetConfigs.get_cred())
This error is returned:
{:error, %Dwolla.Errors{code: nil, message: nil, errors: []}}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a separate function
MyAppWeb.GetConfigs
for getting credentials from config which returns as:%{ client_id: "key", client_secret: "secret" }
But when I pass the funtion to
Dwolla.Token.get
as:Token.get(GetConfigs.get_cred())
This error is returned:
{:error, %Dwolla.Errors{code: nil, message: nil, errors: []}}
The text was updated successfully, but these errors were encountered: