const API_ENDPOINT = 'https://discord.com/api/v6'; const axios = require('axios').default; export function run(app) { app.get('/discordauth', async (req, res) => { const code = req.query.code; if (code) { try { const data = new URLSearchParams({ client_id: process.env.DISCORD_OAUTH_CLIENTID, client_secret: process.env.DISCORD_OAUTH_CLIENTSECRET, grant_type: 'authorization_code', code: code, redirect_uri: 'http://localhost:8080/discordauth', scope: 'identify' }); const postRes = await axios.post(`${API_ENDPOINT}/oauth2/token`, data, { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }); const userInfo = await axios.get(`${API_ENDPOINT}/users/@me`, { headers: { authorization: `${postRes.data.token_type} ${postRes.data.access_token}` } }); res.send(`hi ${userInfo.data.username}#${userInfo.data.discriminator}
`); } catch(err) { res.send(`whoooops
${err}`); } } else { res.send(`Click here!!`); } }); }