This file contains hidden or 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
var oauth = require('oauth'); | |
var consumerKey = "AAAAAAAAAAAAAAAAAA"; | |
var consumerSecret = "BBBBBBBBBBBBBBBBBBBB"; | |
var callbackURL = "http://127.0.0.1:8080/twitterOauthCatch"; // be sure to set me in the application's settings on dev.twitter.com | |
var oathClient = new oauth.OAuth( | |
"https://twitter.com/oauth/request_token", | |
"https://twitter.com/oauth/access_token", | |
consumerKey, | |
consumerSecret, |