I'm using TweetStream to use Twitter Streaming API. Talking with my colleagues (and also in my memory) when tracking hashstag the # should not be included, but I cannot find any indications about it anymore in the documentation.
Also in another stackoverflow question this rule is mentioned, but the linked page in Twitter Documentation does not shows this indication anymore.
It looks like that using TweetStream like this:
TweetStream::Client.new.track('#term1', '#term2') do |status|
puts "#{status.text}"
end
works as expected. Can anyone confirm if this is the right way to setup a streaming client if I need to track #term1
and #term2
?