我正在使用react.js进行电子应用。我想从用户那里获得实时推文。但似乎我找不到正确的方法来做到这一点。
我正在将Twit库用于node.js
到目前为止,我已经做到了:
import React, {Component} from 'react'
import Twit from 'twit'
class aaa extends Component {
constructor() {
super()
}
componentDidMount() {
const 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.
})
let stream = T.stream('statuses/filter', { follow: '!username!' })
stream.on('tweet', function (tweet) {
console.log(tweet)
})
}
render() {
return(
<div>
</div>
)
}
}
export default aaa
这是“:用户名!”。 ”似乎并非正确的做法。如果我在这里输入“ track:'word'”程序就可以了。有解决方案的主意吗?
最佳答案
好吧,我想关闭这个。因此,我按照@Ratan Kumer的建议进行操作,在http://gettwitterid.com/上找到了Twitter ID,并在其中放置了follow: 'id'
,就像一个魅力一样。
谢谢!