AnyEvent-Twitter-Stream
AnyEvent-Twitter-Stream copied to clipboard
AnyEvent based Twitter stream consumer
As of August 23rd, 2018, we retired both Site Streams and User Streams. Please make sure to migrate over to the Account Activity API. See: https://developer.twitter.com/en/docs/twitter-api/enterprise/account-activity-api/migration/us-ss-migration-guide The API endpoint used...
Appears to no longer work? That same error shows up for username/pass as well as oauth - and should really tell us more info about what to do next...
Version 0.27 now works correctly with chunked encoding, however, if the use_compression option is enabled it fails.
Wrap JSON decoding inside an eval to catch any decoding errors, which are now emitted as an event. Stops the stream dying if there's some error and provides a way...
Hi, I added support for the "limit" notification type. It gets sent from the stream if the track request matches more tweets than currently allowed to deliver, i.e. 1% of...
Allows access to connect socket and set, for instance, the source ip address. $listener = AnyEvent::Twitter::Stream->new( consumer_key => $consumer_key, consumer_secret => $consumer_secret, token => $token, token_secret => $token_secret, track =>...
Added: on_json callback to be used for personal tweet algorithm or with the no_json_decode argument. I didn't modify the test file, will try to look into that later. But maybe...
Hello, I've setup a script to launch many instance of AnyEvent::Twitter::Stream with differents parameters such Twitter user, track query, ... . I would like to use a different proxy per...
I have this configuration code for my streaming: ``` my $done = AnyEvent->condvar; my $listener = AnyEvent::Twitter::Stream->new( token => TOKEN_FOLLOWTO, token_secret => TOKEN_SECRET_FOLLOWTO, consumer_key => CONSUMER_KEY_FOLLOWTO, consumer_secret => CONSUMER_SECRET_FOLLOWTO, method...