Releases: redouane59/twittered
Releases · redouane59/twittered
v2.3
- Improve
getFollowers
and getFollowing
methods : #227
- implement
backfill_minutes
new parameter for v2 stream endpoints : #231
v2.2
- Adding the parameter
recursiveCall
in AdditionalParameters
to decides if the call is done recursively to have a full answer or just once with a next_token
returned
- Refacto on several classes like
UrlHelper
, TwitterClient
, etc.
v2.1
- Major changes for several methods return type (from
List<Tweet>
to TweetList
to let users use tokens or pagination) : ex : getUserTimeline
, getUserMentions
, searchTweets
etc.
UserListV2
class is now called UserList
searchForTweetsWithin7days
is now called searchTweets
searchForTweetsFullArchive
is now called searchAllTweets
- Use of
AdditionalParameters
class when possible instead of having several constructors (with start_time
, end_time
, since_id
,until_id
, etc.)
- The GroupId is now
io.github.redouane59.twitter
and not com.github.redouane59.twitter
anymore (sonartype condition update)
- Several big refacto in code.
See #218
You will probably have impact in your code, don't hesitate to ping me if you face any diffculy.
v1.27
- Implementing getTweetCounts & getTweetCountsFullArchive V2 : #214
- Implementing getDm v1 : #206
- Implementing postDm v1 : #210
- Replacing
com
by io
in the library groupId and project main package to follow sonartype new rules : #216
v1.26
- Implementing get direct messages list v1 : #202 & #205
- Fixing get mentions endpoint with dates : #200 & #201
- Implementing get blocked users v2 endpoint : #198
- Improving NRT : #197
v1.25
- Adding get followers ids v1.1 endpoint : #191
- Adding
attachment_url
to post tweet v1 : #196
v1.24
- Improve UserV2 object : #181
- Streaming improvement : #185 (thanks @Greg-M73)
- Implementing liking users endpoint : #189
- Implementing liked tweets endpoint : #190
v1.23
- Adding
max_result
property to getFollowers/getFollowings endpoints : #168
- Implementing likes endpoints V2 : #174
- Simplifying V2 endpoint using
user_id
: #175
- Fixing full archive search : #178
v1.22
- Adding verified information to User object : #159
- Implementing block and unblock endpoints v2 : #162
v1.21
- Adding missing tweet fields : #150
- Adding missing expansions in stream endpoints : #151
- Fixing timeline order for collections : #153
- Fixing visibility of protected tweets & user depending on the authentication : #158