onst response = await fetch(`https://discordapp.com/api/oauth2/token`, { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded", }, body: JSON.stringify({ client_id: process.env.CLIENT_ID, client_secret: process.env.CLIENT_SECRET, grant_type: "authorization_code", redirect_uri: redirectURL, scope: 'identify guilds', code: code, }), });