fix: disable ssl checks in api client to avoid problems with buspro
This commit is contained in:
@@ -153,7 +153,9 @@ class ApiClient
|
|||||||
$response = $this->httpClient->request('GET', $this->config['bpn_url'], [
|
$response = $this->httpClient->request('GET', $this->config['bpn_url'], [
|
||||||
'query' => [
|
'query' => [
|
||||||
'operation' => $body,
|
'operation' => $body,
|
||||||
]
|
],
|
||||||
|
'verify_peer' => false,
|
||||||
|
'verify_host' => false,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$xml = $response->getContent();
|
$xml = $response->getContent();
|
||||||
|
|||||||
Reference in New Issue
Block a user