Concatenate queries with the Twitter gem
I want to search Tweets that are both favorited in a specific account and
contain an specific hashtag.
# account_name favorited tweets
Twitter.favorites('account_name')
# tweets that contain the hashtag #hashtag
Twitter.search('#hashtag').results
How could I build up a query to include those two?
Thanks in advance.
No comments:
Post a Comment