-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.js
57 lines (44 loc) · 1.66 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
var Twit = require('twit');
const express = require('express');
const app = express();
const server = require('http').Server(app);
var io = require('socket.io')(server);
var fs = require('fs');
// http://expressjs.com/en/starter/static-files.html
app.use(express.static('public'));
io.on('connection', function(socket) {
T.get('search/tweets', { q: '#coding', count: 100 }, function(err, data, response) {
var tweetArray=[];
for (let index = 0; index < data.statuses.length; index++) {
const tweet = data.statuses[index];
var tweetbody = {
'text': tweet.text,
'userScreenName': "@" + tweet.user.screen_name,
'userImage': tweet.user.profile_image_url_https,
'userDescription': tweet.user.description,
}
try {
if(tweet.entities.media[0].media_url_https) {
tweetbody['image'] = tweet.entities.media[0].media_url_https;
}
} catch(err) { }
tweetArray.push(tweetbody);
}
io.emit('allTweet',tweetArray)
})
var stream = T.stream('statuses/filter', { track: '#coding', language: 'en' })
stream.on('tweet', function (tweet) {
io.emit('tweet',{ 'tweet': tweet });
})
});
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.
});
// listen for requests :)
const listener = server.listen(process.env.PORT, function() {
console.log('Your app is listening on port ' + listener.address().port);
});