diff --git a/php/rri/reads.php b/php/rri/reads.php index 69dae25d..7279b69d 100644 --- a/php/rri/reads.php +++ b/php/rri/reads.php @@ -309,7 +309,7 @@ function suggestIcd10Codes(Client $guzzle, string $interp, string $cpt): ?array $site_id = getenv('OEMR_RRI_SITE_ID'); $base_uri = $base_url . '/oauth2/' . $site_id . '/token'; -$guzzle = new Client(['verify' => false]); +$guzzle = new Client(); $response = $guzzle->post($base_uri, [ 'form_params' => [ @@ -324,7 +324,7 @@ function suggestIcd10Codes(Client $guzzle, string $interp, string $cpt): ?array $bearer = json_decode((string) $response->getBody(), true)['access_token']; -$client = new Client(['verify' => false]); +$client = new Client(); $headers = [ 'Authorization' => 'Bearer ' . $bearer,