simple Google Cloud Function to handle client side github oAuth
replace the configuration variables with your client_id
& client_secret
of your github oauth app
const config = {
client_id: "****",
client_secret: "***"
};
simple Google Cloud Function to handle client side github oAuth
JavaScriptMIT