0
私はtwitterボットを持っているプロジェクトに取り組んでいます。開発者のtwitterがNodejsのロボットになったときの返信
var replybot = function() {
//The word that we are going to search in tweets
var word = 'hello';
//Variables to store the twitter user id and screen name to make a reply
var id_str, screen_name;
console.log('Bot started looking for the word ' + word + '.');
stream.on('tweet', tweetEvent);
function tweetEvent(tweet) {
var info_text = tweet.text;
if (info_text.indexOf(word) > -1) {
console.log(tweet.text); //Displays the tweet with the word
//We store the twitter id and the user screen name to make a reply
id_str = tweet.id_str;
screen_name = tweet.user.screen_name;
console.log('need do it once');
//Now we are going to reply the tweet
Twitter.post('statuses/update', {in_reply_to_status_id: id_str,
status: '@' + screen_name + ' I think you mean "goodbye"'},
function(error, tweet, response){
if(error) {
console.log(' Error');
}
else{
console.log('. Success!!!');
} // Tweet body
});
}
}
console.log('done');
}
replybot();
// 'reply' a tweet in every 25 minutes
setInterval(replybot, 1500000);
イム動作するように、このレポ以下:https://github.com/ttezel/twit
は、ここに私のコードです。
しかし、私は問題を抱えていました。上記のコードを実行すると、ボットは1つのツイートで非常に多くの時間を返すので、理由はわかりません。 私はこの機能のための間隔を設定しましたが。
新しいノードと任意のヘルプは素晴らしいでしょう!おかげ