twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

commit 83c50e7922f38278d5dc7d6aaa0b9dca6b53488f
parent 2968a6382f76a42eea2493fd507f1a78443efed1
Author: underd0g1 <hide4@comcast.net>
Date:   Thu, 24 Sep 2020 22:58:39 -0400

config

Diffstat:
Dconfig.js | 35-----------------------------------
1 file changed, 0 insertions(+), 35 deletions(-)

diff --git a/config.js b/config.js @@ -1,35 +0,0 @@ -// main sheet to call the commands and interact with web calls -module.exports = { - - consumer_key: 'iPKcerCW1JmKUfQ880ERn8POP', - consumer_secret: 'TaPHpZS6bhD1P5VEj8p5lVZ95GiLOccwySDbXRDzgrfcbOT88P', - access_token: '1212777559819079680-4nYVYbkIj8t6RUwwmQFIUGO4210ujQ', - access_token_secret: 'JtIVh8XD7a8P4FqK3oh35K1bjPgjMb5np2ZVsnfdWAc1j', - timeout_ms: 60*1000, // optional HTTP request timeout to apply to all requests. - strictSSL: false, // optional - requires SSL certificates to be valid - -}; - - -// search twitter for all tweets containing the word 'banana' since July 11, 2011 - -// T.get('search/tweets', { q: '350z since:2011-07-11', count: 3 }, function(err, data, response) { -// console.log(data) -// }) -// -// -// -// -// T.get('followers/ids', { screen_name: 'Greatt_DaNe1' }, function (err, data, response) { -// console.log(data.ids) -// }) - - -// fetch to tranlate the ids -// async function convert(){ -// fetch("https://api.twitter.com/1.1/followers/list.json?cursor=-1&screen_name=twitterdev&skip_status=true&include_user_entities=false", { -// headers: { -// Authorization: "OAuth oauth_consumer_key=\"consumer-key-for-app\", \n oauth_nonce=\"generated-nonce\", oauth_signature=\"generated-signature\", \n oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"generated-timestamp\", \n oauth_version=\"1.0\"" -// } -// }) -// }