我想搜索在特定帐户和中都包含特定主题标签的推文。
# account_name favorited tweets
Twitter.favorites('account_name')
# tweets that contain the hashtag #hashtag
Twitter.search('#hashtag').results
我如何构建查询以包含这两个?
提前致谢。
答案 0 :(得分:1)
我用这个:
Twitter.favorites('account_name').select do |tweet|
tweet.hashtags.map(&:text).include?('my_hashtag')
end
请注意,my_hashtag
不包含 #
符号。因此,如果您想按标签#hello
进行过滤,则必须使用:
my_hashtag = 'hello'