From 72b5ace984ae5bd9276b889b98a144927b0d7a14 Mon Sep 17 00:00:00 2001 From: Eccentric Date: Tue, 26 Dec 2023 03:52:35 +0000 Subject: [PATCH] maybe fix spam of api --- handlers/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/auth.go b/handlers/auth.go index 42fe428..df4bf4d 100644 --- a/handlers/auth.go +++ b/handlers/auth.go @@ -11,7 +11,7 @@ import ( var ( oauthTokenGrantTypes = map[string]func(c *fiber.Ctx, body *FortniteTokenBody) error{ - "client_credentials": PostTokenClientCredentials, + // "client_credentials": PostTokenClientCredentials, // spams the api?? like wtf "password": PostTokenPassword, "exchange_code": PostTokenExchangeCode, }