Skip to content

Commit

Permalink
Merge pull request #89 from two-n/master
Browse files Browse the repository at this point in the history
debugging he quote error
  • Loading branch information
efrymire authored Sep 10, 2018
2 parents eb89e67 + e59c4d3 commit 4611195
Showing 1 changed file with 2 additions and 37 deletions.
39 changes: 2 additions & 37 deletions read_and_reply.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@ const makeViz = (data) => {
module.exports.read_and_reply = read_and_reply = (tweetEvent) => {

let tweeter = tweetEvent.tweet_create_events[0].user.id
console.log(tweetEvent.tweet_create_events[0])

if (tweeter !== 1031985269984165900) {

let quoteStatus = tweetEvent.tweet_create_events[0].is_quote_status
console.log(quoteStatus)
let id = tweetEvent.tweet_create_events[0].id_str
let user = tweetEvent.tweet_create_events[0].user.screen_name
let user2 = quoteStatus ? tweetEvent.tweet_create_events[0].quoted_status.user.screen_name : null
Expand All @@ -81,43 +83,6 @@ module.exports.read_and_reply = read_and_reply = (tweetEvent) => {
console.log(body)
})

// if (quoteStatus) {
// let user1 = tweetEvent.tweet_create_events[0].user.screen_name
// let user2 = tweetEvent.tweet_create_events[0].quoted_status.user.screen_name
// let tweet = '@' + user1 + ' ' + '@' + user2 + ' ' + makeViz(parse(tweetEvent.tweet_create_events[0].quoted_status.text))

// // request options
// const request_options = {
// oauth: auth.twitter_oauth,
// url: 'https://api.twitter.com/1.1/statuses/update.json?status=' + encodeURIComponent(tweet) + '&in_reply_to_status_id=' + id,
// }

// // POST request to tweet
// request.post(request_options).then(function (body) {
// console.log(body)
// }).catch(function (body) {
// console.log(body)
// })

// } else {
// let user = tweetEvent.tweet_create_events[0].user.screen_name
// let tweet = '@' + user + ' ' + makeViz(parse(tweetEvent.tweet_create_events[0].text))

// // request options
// const request_options = {
// oauth: auth.twitter_oauth,
// url: 'https://api.twitter.com/1.1/statuses/update.json?status=' + encodeURIComponent(tweet) + '&in_reply_to_status_id=' + id,
// }

// // POST request to tweet
// request.post(request_options).then(function (body) {
// console.log(body)
// }).catch(function (body) {
// console.log(body)
// })

// }

}

}

0 comments on commit 4611195

Please sign in to comment.