diff --git a/src/GameQ/Protocols/Eos.php b/src/GameQ/Protocols/Eos.php index ba6ae2ea..8dfad5dd 100644 --- a/src/GameQ/Protocols/Eos.php +++ b/src/GameQ/Protocols/Eos.php @@ -164,7 +164,6 @@ protected function authenticate() $auth_url = "https://api.epicgames.dev/auth/v1/oauth/token"; $auth_headers = [ 'Authorization: Basic ' . base64_encode("{$this->user_id}:{$this->user_secret}"), - 'Accept-Encoding: deflate, gzip', 'Content-Type: application/x-www-form-urlencoded', ]; @@ -228,7 +227,6 @@ protected function deviceAuthentication() $device_auth_url = "https://api.epicgames.dev/auth/v1/accounts/deviceid"; $device_auth_headers = [ 'Authorization: Basic ' . base64_encode("{$this->user_id}:{$this->user_secret}"), - 'Accept-Encoding: deflate, gzip', 'Content-Type: application/x-www-form-urlencoded', ];