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
Can the error output of API response 400 be ignored? This affects other CODE operations
The text was updated successfully, but these errors were encountered:
Change file: vendor\binance\binance-connector-php\src\Binance\APIClient.php
private function buildClient($httpRequest) { $this->httpRequest = $httpRequest ?? new \GuzzleHttp\Client([ 'base_uri' => $this->baseURL, 'headers' => [ 'Content-Type' => 'application/json', 'X-MBX-APIKEY' => $this->key, 'User-Agent' => 'binance-connect-php' ], 'timeout' => $this->timeout ]); }
change to private function buildClient($httpRequest) { $this->httpRequest = $httpRequest ?? new \GuzzleHttp\Client([ 'base_uri' => $this->baseURL, 'headers' => [ 'Content-Type' => 'application/json', 'X-MBX-APIKEY' => $this->key, 'User-Agent' => 'binance-connect-php' ], 'timeout' => $this->timeout, 'http_errors' => false ]); }
Sorry, something went wrong.
can't we add this as a parameter so it's easier to use.
No branches or pull requests
Can the error output of API response 400 be ignored?
This affects other CODE operations
The text was updated successfully, but these errors were encountered: