Last active
December 31, 2020 20:31
-
-
Save PrincewillIroka/2e6525772ce7ac059dd342f518cbf272 to your computer and use it in GitHub Desktop.
A simple Proxy Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express"); | |
const bodyParser = require("body-parser"); | |
const FormData = require("form-data"); | |
const fetch = require("node-fetch"); | |
const { client_id, redirect_uri, client_secret } = require("./config"); | |
const config = require("./config"); | |
const app = express(); | |
app.use(bodyParser.json()); | |
app.use(bodyParser.json({ type: "text/*" })); | |
app.use(bodyParser.urlencoded({ extended: false })); | |
// Enabled Access-Control-Allow-Origin", "*" in the header so as to by-pass the CORS error. | |
app.use((req, res, next) => { | |
res.header("Access-Control-Allow-Origin", "*"); | |
next(); | |
}); | |
app.post("/authenticate", (req, res) => { | |
const { code } = req.body; | |
const data = new FormData(); | |
data.append("client_id", client_id); | |
data.append("client_secret", client_secret); | |
data.append("code", code); | |
data.append("redirect_uri", redirect_uri); | |
// Request to exchange code for an access token | |
fetch(`https://github.com/login/oauth/access_token`, { | |
method: "POST", | |
body: data, | |
}) | |
.then((response) => response.text()) | |
.then((paramsString) => { | |
let params = new URLSearchParams(paramsString); | |
const access_token = params.get("access_token"); | |
// Request to return data of a user that has been authenticated | |
return fetch(`https://api.github.com/user`, { | |
headers: { | |
Authorization: `token ${access_token}`, | |
}, | |
}); | |
}) | |
.then((response) => response.json()) | |
.then((response) => { | |
return res.status(200).json(response); | |
}) | |
.catch((error) => { | |
return res.status(400).json(error); | |
}); | |
}); | |
const PORT = process.env.SERVER_PORT || 5000; | |
app.listen(PORT, () => console.log(`Listening on ${PORT}`)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment