简体   繁体   English

nodejs 和 twitter api 错误'错误:错误 Twitter 流式传输请求:404'

[英]nodejs and twitter api error ' Error: Bad Twitter streaming request: 404 '

Hello i want to create a bot who will automatically send a message to the men who follow you您好,我想创建一个机器人,它会自动向关注您的人发送消息


var Twit = require('twit');

var config = require('./config');
var T = new Twit(config);

var stream = T.stream('user');

stream.on('follow', followedMessage);

function followedMessage(eventMsg) {
    console.log('+1 follow');
    var fs = require('fs');
    var json = JSON.parse(eventMsg);
    fs.writeFile("tweet.json", json)
} 

but when i start the app i got this error但是当我启动应用程序时出现此错误

      throw er; // Unhandled 'error' event
      ^

Error: Bad Twitter streaming request: 404
    at Object.exports.makeTwitError (C:\Users\guill\Desktop\Programmation\welcomemessage-V1.0.0\node_modules\twit\lib\helpers.js:74:13)
    at Request.<anonymous> (C:\Users\guill\Desktop\Programmation\welcomemessage-V1.0.0\node_modules\twit\lib\streaming-api-connection.js:96:29)
    at Request.emit (events.js:327:22)
    at IncomingMessage.<anonymous> (C:\Users\guill\Desktop\Programmation\welcomemessage-V1.0.0\node_modules\request\request.js:1076:12)
    at Object.onceWrapper (events.js:421:28)
    at IncomingMessage.emit (events.js:327:22)
    at endReadableNT (_stream_readable.js:1221:12)
    at processTicksAndRejections (internal/process/task_queues.js:84:21)
Emitted 'error' event on StreamingAPIConnection instance at:
    at Request.<anonymous> (C:\Users\guill\Desktop\Programmation\welcomemessage-V1.0.0\node_modules\twit\lib\streaming-api-connection.js:99:14)
    at Request.emit (events.js:327:22)
    [... lines matching original stack trace ...]
    at processTicksAndRejections (internal/process/task_queues.js:84:21) {
  code: null,
  allErrors: [],
  twitterReply: '',
  statusCode: 404
}

someone can help me?有人可以帮助我吗?

i dont think that T.stream('user');我不认为 T.stream('user'); is still working now, i have a mission now to built a bot for a client and i had the same problem,现在仍在工作,我现在的任务是为客户构建一个机器人,我遇到了同样的问题,

Try to use T.stream('statuses/filter'), or T.stream('sample')尝试使用 T.stream('statuses/filter') 或 T.stream('sample')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM