我正在研究twit API。事件" direct_message"当有人给我发消息时会触发。
我认为但它不能正常工作。
这是我的代码:
const config = require("./config");
const twit = new Twit(config);
const stream = twit.stream("user");
stream.on("direct_message", msg => {
console.log("It Worked")l;
});
没有任何回应!
答案 0 :(得分:0)
我不确定,但这应该在那里吗?
console.log("It Worked")l;