0

I'd like to fetch tweets with the Twitter Search API that have a certain hashtag and from a list of Twitter users.

This returns all the tweets from two users, but I only need tweets with a certain hashtag https://search.twitter.com/search.json?&q=from:stevdobb+OR+from:dummytwitteruser

1 Answers1

1

You can combine users and hashtags in your search query. i.e. you could do something like this:

https://search.twitter.com/search.json?&q=from:stevdobb+OR+from:dummytwitteruser+%23file

This returns tweets from "stevdobb" or "dummytwitteruser" that contain a #file hashtag

Filippos Karapetis
  • 4,367
  • 21
  • 39