From afadd36e48c9fc7d7b5daf700d9faad00d0b80c9 Mon Sep 17 00:00:00 2001 From: thewesker Date: Sat, 18 Jun 2016 03:10:24 -0400 Subject: [PATCH] Fixed the logging when tweets go out --- app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app.js b/app.js index 93d2d39..c136d6c 100644 --- a/app.js +++ b/app.js @@ -5,10 +5,10 @@ var storage = require('lowdb/file-sync'); var session = low('./config.json', {'storage': storage}); var T = new Twit({ - consumer_key: '', - consumer_secret: '', - access_token: '', - access_token_secret: '', + consumer_key: 'XEpOzvNVnIL0z5cFggsZQzrTt', + consumer_secret: 'tsOwdaDQXKisIYDhGXSo1552NLhgJdDtd3gglsBqBUQrbmGzG2', + access_token: '3220758997-Z5PIScOrRfjV3CsabXROoLObAMQyRxO9XZXu3qh', + access_token_secret: 'K01MHdAtxZBflo1yf7yFG25j7180RrT16sSNkF663ExAg', timeout_ms: 60*1000, // optional HTTP request timeout to apply to all requests. })