From 662afabad5085b986c7f9477cb1abbdb5c255e3a Mon Sep 17 00:00:00 2001 From: Sh4d0wless <61610498+Sh4d0wless@users.noreply.github.com> Date: Wed, 6 Aug 2025 15:40:41 +0200 Subject: [PATCH] Update Eos.php for ARK: Survival Ascended --- src/GameQ/Protocols/Eos.php | 2 -- 1 file changed, 2 deletions(-) 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', ];