enzostvs's picture
enzostvs HF Staff
Upload 172 files
9cd6ddb verified
raw
history blame contribute delete
467 Bytes
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import type { NextApiRequest, NextApiResponse } from "next";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
res.json(
"https://discord.com/oauth2/authorize?response_type=token&client_id=1037438085476130916&redirect_uri=https://discotools.xyz%2Fdiscord-callback&scope=identify+guilds+guilds.join&state=fL7RdWetcllWOgqa6dAadYHtsNHPr0"
);
}