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
Ao criar uma instância do PagarmeCoreApiClient eu faço o seguinte:
PagarmeCoreApiClient
return new PagarmeCoreApiClient($chave, '');
Já que na documentação o seguinte:
Como utilizar a
SecretKey Para montar a requisição Basic Auth, você deve utilizar a SecretKey da seguinte maneira: User: SecretKey Password: vazio
SecretKey
Para montar a requisição Basic Auth, você deve utilizar a SecretKey da seguinte maneira: User: SecretKey Password: vazio
Mas quando eu faço isso o valor da senha continua TODO: Replace Porque PagarmeCoreApiClient faz a seguinte comparação:
TODO: Replace
Configuration::$basicAuthPassword = $basicAuthPassword ? $basicAuthPassword : Configuration::$basicAuthPassword;
E como string vazia um valor falso o valor continua sendo TODO: Replace
Teste: https://phpsandbox.io/e/x/dj9q0?layout=EditorPreview&defaultPath=%2F&theme=dark&showExplorer=no&openedFiles=
Por enquanto eu estou fazendo o seguinte:
Configuration::$basicAuthPassword = ''; return new PagarmeCoreApiClient($chave, '');
The text was updated successfully, but these errors were encountered:
Passe a senha de acesso ao dash!
Sorry, something went wrong.
No branches or pull requests
Ao criar uma instância do
PagarmeCoreApiClient
eu faço o seguinte:Já que na documentação o seguinte:
Como utilizar a
Mas quando eu faço isso o valor da senha continua
TODO: Replace
Porque
PagarmeCoreApiClient
faz a seguinte comparação:E como string vazia um valor falso o valor continua sendo
TODO: Replace
Teste: https://phpsandbox.io/e/x/dj9q0?layout=EditorPreview&defaultPath=%2F&theme=dark&showExplorer=no&openedFiles=
Por enquanto eu estou fazendo o seguinte:
The text was updated successfully, but these errors were encountered: