/pwtweetar-server

Tweet wall for specific hash tag made using Twitter streaming API

Primary LanguageHTML

PWTweetAR-Server

Tweet wall for specific hash tag made using Twitter streaming API. Forked from (Twitterstream by divakarvenu)[https://github.com/divakarvenu/Twitterstream].

  1. Clone the project

  2. npm install

  3. open index.js

  4. Place your access tokens and keys here

  var T = new Twit({
    consumer_key:         '',
    consumer_secret:      '',
    access_token:         '',
    access_token_secret:  '',
    timeout_ms:           60*1000,  // optional HTTP request timeout to apply to all requests.
  });
  1. node index.js

🦊