From 96a04146389eb1620bec75e65fd9b2f065c99be0 Mon Sep 17 00:00:00 2001 From: CatAClock Date: Sun, 13 Jul 2025 11:59:59 -0700 Subject: [PATCH] hm --- src/HTTP/JS/BlueskyAPI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HTTP/JS/BlueskyAPI.js b/src/HTTP/JS/BlueskyAPI.js index 78fb4d1..4a1e173 100644 --- a/src/HTTP/JS/BlueskyAPI.js +++ b/src/HTTP/JS/BlueskyAPI.js @@ -447,7 +447,7 @@ export async function PARrequest(PAREndpoint, State, Challenge) { } async function AuthRequest(TokenEndpoint, code, DPoP, Verify) { - return fetch(TokenEndpoint, {method: "POST", body: new URLSearchParams({ grant_type: "authorization_code", code: code, client_id: "https://fedi.crowdedgames.group/oauth/client-metadata.json", redirect_uri: "https://fedi.crowdedgames.group/HTML/setting.html", code_verifier: Verify}), headers: { "DPoP": DPoP, "Content-Type": "application/x-www-form-urlencoded"}}) + return fetch(TokenEndpoint, {method: "POST", body: new URLSearchParams({ grant_type: "authorization_code", code: code, client_id: "https://fedi.crowdedgames.group/oauth/client-metadata.json", redirect_uri: "https://fedi.crowdedgames.group/setting", code_verifier: Verify}), headers: { "DPoP": DPoP, "Content-Type": "application/x-www-form-urlencoded"}}) .then((response) => response.json()); }