Skip to content

Instantly share code, notes, and snippets.

View romil93's full-sized avatar

Romil kumar vasani romil93

View GitHub Profile
@romil93
romil93 / app.js
Last active December 16, 2016 21:04
Ticketmaster OAuth Callback server for QA written on Node.JS
var express = require('express'); //npm install express
var app = express();
//Load the request module
var request = require('request'); //npm install request
//Lets configure and request
//accepts the redirect_uri in the form of http://localhost:8080/?code=onaonasodnabsfin213123
app.get('/', function(req, res) {