From a768e4e470e0d2f2b18bd4e11c2cab61a2257c53 Mon Sep 17 00:00:00 2001 From: Lawin0129 <56766256+Lawin0129@users.noreply.github.com> Date: Sun, 28 Nov 2021 17:17:24 +0000 Subject: [PATCH] Proper oauth/verify response --- index.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 151dca6..497026c 100644 --- a/index.js +++ b/index.js @@ -1279,7 +1279,22 @@ express.get("/fortnite/api/storefront/v2/keychain", async (req, res) => { }) express.get("/account/api/oauth/verify", async (req, res) => { - res.json({}) + res.json({ + "token": "lawinstokenlol", + "session_id": "3c3662bcb661d6de679c636744c66b62", + "token_type": "bearer", + "client_id": "lawinsclientidlol", + "internal_client": true, + "client_service": "fortnite", + "account_id": "LawinServer", + "expires_in": 28800, + "expires_at": "9999-12-02T01:12:01.100Z", + "auth_method": "exchange_code", + "display_name": "LawinServer", + "app": "fortnite", + "in_app_id": "LawinServer", + "device_id": "lawinsdeviceidlol" + }) res.status(200); res.end(); })