twitterfeed:Go频道提供包含搜索词的实时推文 源码
推特 转到频道,提供包含搜索词的实时推文。 以下代码读取所有包含"monkey"推文,持续五秒钟: ctx , _ := context . WithTimeout ( context . Background (), 5 * time . Second ) r := twitterfeed . NewTweetReader ( "consumerKey" , "consumerSecret" , "accessToken" , "accessSecret" ) for tweet := range r . Run ( ctx , "monkey" ) { log . Println (
用户评论