通过CLI检索带有特定哈希标签的最新Twitter推文

时间:2013-03-07 17:55:45

标签: bash shell twitter hashtag

我正在寻找一种通过cli(bash)检索包含特定twitter标签的最新推文的方法。有点像“./get-tweet.sh blah”那样的东西,并且返回“Dude我感觉如此#blah”谢谢!

看起来我可以通过这样做来获取RSS Feed:

curl -s'http://search.twitter.com/search.rss?q=%23blah&rpp=1'

然后我只需要删除正确的xml

2 个答案:

答案 0 :(得分:1)

我会考虑TTYtter这样做。特别是它允许脚本如下:

ttytter -runcommand="/search #haiku"

对于oAuth,您需要以交互方式进行初始设置。

答案 1 :(得分:0)

好的,我一起解决了一个问题:

!/斌/庆典

curl -s“http://search.twitter.com/search.rss?q=%23 $ 1& rpp = 1”> /tmp/hashtag.xml

xmllint --xpath'/ rss / channel / item / title / text()'/ tmp / hashtag.xml | sed's / http \://t.co/*//g'| sed's /#// g'| sed's / @ // g'| xargs -i -0 echo -n“{}” 回声

rm /tmp/hashtag.xml