Why do I get errors in guzzle, despite the fact that everything is fine with the curl?
I have error with Guzzle 7 in PHP 8.2. If i do query by Postman or curl all okey, but i need use guzzle lib or analog php lib. My code: $this->client = new Client([ ‘base_uri’ => ‘https://fcm.googleapis.com/fcm/’, ‘headers’ => [ ‘Authorization: key=’ . *SERVER_KEY*, ‘Content-Type: application/json’ ] ]); $fields = [ ‘to’ => *USER_TOKEN*,… Read More Why do I get errors in guzzle, despite the fact that everything is fine with the curl?