Matthew R. DeVerna

Results 9 issues of Matthew R. DeVerna

Seems like there are some new optional fields that we'd like to add eventually. #### User fields - [ ] `verified_type` (see #94 ) #### Tweet Fields - [ ]...

enhancement

According to Twitter's page about [consuming streaming data](https://developer.twitter.com/en/docs/twitter-api/tweets/filtered-stream/integrate/consuming-streaming-data) we want to be able to do the below: - [X] Establish an HTTPS streaming connection to the filter stream endpoint. -...

enhancement

Despite not being present on [Twitter's list of HTTP errors](https://developer.twitter.com/en/support/twitter-api/error-troubleshooting), it seems like when streaming rules are created, they return the successful 201 HTTP status code ([details](https://httpstatuses.com/201)). If the `rate_limit_manager`...

bug

Since it seems like filtered streaming rules persist unless the user removes them (see #85 for an issue seeking to confirm this is true), a simple function that removes all...

enhancement

Create scripts that can be used to gather data using the available endpoints. Here are the endpoints available in `osometweet` at the moment: - [x] `tweet_lookup` - [x] `user_lookup_ids` -...

documentation
help wanted
test

Very often it happens that I just want to make a single call to a function to see what it returns, etc. As a result, I find myself typing out...

enhancement

Allows a user ID to **follow** another user: `/2/users/:source_user_id/following` (POST) Reference: https://developer.twitter.com/en/docs/twitter-api/users/follows/api-reference/post-users-source_user_id-following

enhancement

Allows a user ID to **unfollow** another user: `2/users/:source_user_id/following/:target_user_id` (DELETE) Reference: https://developer.twitter.com/en/docs/twitter-api/users/follows/api-reference/delete-users-source_id-following

enhancement

Using the full archive search we should be able to get users' entire list of tweets. I need to build this script for the superspreaders project anyways so I figured...

enhancement