I’ve managed to add rules to a Filtered Stream. Now, how do I get the results?

Using Postman I’m able to GET and returns HTTP 200 (success):

Where do the results get returned? How should I keep the connection open? How can I pipe the data elsewhere? Looking for options here.

My goal is to capture tweets by week for a sports team. I’d like to land them in an S3 bucket as separate .json files by week.

Postman is good for making individual calls but not for collecting data. Streaming is like downloading an infinitely large file, and postman is not good for this.

I recommend trying twarc as a command line tool: twarc2 (en) - twarc

1 Like