You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*TweetsApi* | [**usersIdLikedTweets**](docs/TweetsApi.md#usersIdLikedTweets) | **GET** /2/users/{id}/liked_tweets | Returns Tweet objects liked by the provided User ID
295
292
*TweetsApi* | [**usersIdMentions**](docs/TweetsApi.md#usersIdMentions) | **GET** /2/users/{id}/mentions | User mention timeline by User ID
296
293
*TweetsApi* | [**usersIdRetweets**](docs/TweetsApi.md#usersIdRetweets) | **POST** /2/users/{id}/retweets | Causes the user (in the path) to retweet the specified tweet
294
+
*TweetsApi* | [**usersIdTimeline**](docs/TweetsApi.md#usersIdTimeline) | **GET** /2/users/{id}/timelines/reverse_chronological | User home timeline by User ID
297
295
*TweetsApi* | [**usersIdTweets**](docs/TweetsApi.md#usersIdTweets) | **GET** /2/users/{id}/tweets | User Tweets timeline by User ID
298
296
*TweetsApi* | [**usersIdUnlike**](docs/TweetsApi.md#usersIdUnlike) | **DELETE** /2/users/{id}/likes/{tweet_id} | Causes the user (in the path) to unlike the specified tweet
299
297
*TweetsApi* | [**usersIdUnretweets**](docs/TweetsApi.md#usersIdUnretweets) | **DELETE** /2/users/{id}/retweets/{source_tweet_id} | Causes the user (in the path) to unretweet the specified tweet
Copy file name to clipboardExpand all lines: docs/TweetsApi.md
+112Lines changed: 112 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ All URIs are relative to *https://api.twitter.com*
25
25
|[**usersIdLikedTweets**](TweetsApi.md#usersIdLikedTweets)|**GET** /2/users/{id}/liked_tweets | Returns Tweet objects liked by the provided User ID |
26
26
|[**usersIdMentions**](TweetsApi.md#usersIdMentions)|**GET** /2/users/{id}/mentions | User mention timeline by User ID |
27
27
|[**usersIdRetweets**](TweetsApi.md#usersIdRetweets)|**POST** /2/users/{id}/retweets | Causes the user (in the path) to retweet the specified tweet |
28
+
|[**usersIdTimeline**](TweetsApi.md#usersIdTimeline)|**GET** /2/users/{id}/timelines/reverse_chronological | User home timeline by User ID |
28
29
|[**usersIdTweets**](TweetsApi.md#usersIdTweets)|**GET** /2/users/{id}/tweets | User Tweets timeline by User ID |
29
30
|[**usersIdUnlike**](TweetsApi.md#usersIdUnlike)|**DELETE** /2/users/{id}/likes/{tweet_id} | Causes the user (in the path) to unlike the specified tweet |
30
31
|[**usersIdUnretweets**](TweetsApi.md#usersIdUnretweets)|**DELETE** /2/users/{id}/retweets/{source_tweet_id} | Causes the user (in the path) to unretweet the specified tweet |
String id ="id_example"; // String | The ID of the User to list Reverse Chronological Timeline Tweets of
2140
+
String sinceId ="791775337160081409"; // String | The minimum Tweet ID to be included in the result set. This parameter takes precedence over start_time if both are specified.
2141
+
String untilId ="1346889436626259968"; // String | The maximum Tweet ID to be included in the result set. This parameter takes precedence over end_time if both are specified.
2142
+
Integer maxResults =56; // Integer | The maximum number of results
2143
+
Set<String> exclude =newHashSet<>(Arrays.asList()); // Set<String> | The set of entities to exclude (e.g. 'replies' or 'retweets')
2144
+
String paginationToken ="paginationToken_example"; // String | This parameter is used to get the next 'page' of results.
2145
+
OffsetDateTime startTime =OffsetDateTime.parse("2021-02-01T18:40:40.000Z"); // OffsetDateTime | YYYY-MM-DDTHH:mm:ssZ. The earliest UTC timestamp from which the Tweets will be provided. The since_id parameter takes precedence if it is also specified.
2146
+
OffsetDateTime endTime =OffsetDateTime.parse("2021-02-14T18:40:40.000Z"); // OffsetDateTime | YYYY-MM-DDTHH:mm:ssZ. The latest UTC timestamp to which the Tweets will be provided. The until_id parameter takes precedence if it is also specified.
2147
+
Set<String> expansions =newHashSet<>(Arrays.asList()); // Set<String> | A comma separated list of fields to expand.
2148
+
Set<String> tweetFields =newHashSet<>(Arrays.asList()); // Set<String> | A comma separated list of Tweet fields to display.
2149
+
Set<String> userFields =newHashSet<>(Arrays.asList()); // Set<String> | A comma separated list of User fields to display.
2150
+
Set<String> mediaFields =newHashSet<>(Arrays.asList()); // Set<String> | A comma separated list of Media fields to display.
2151
+
Set<String> placeFields =newHashSet<>(Arrays.asList()); // Set<String> | A comma separated list of Place fields to display.
2152
+
Set<String> pollFields =newHashSet<>(Arrays.asList()); // Set<String> | A comma separated list of Poll fields to display.
|**id**|**String**| The ID of the User to list Reverse Chronological Timeline Tweets of ||
2172
+
|**sinceId**|**String**| The minimum Tweet ID to be included in the result set. This parameter takes precedence over start_time if both are specified. |[optional]|
2173
+
|**untilId**|**String**| The maximum Tweet ID to be included in the result set. This parameter takes precedence over end_time if both are specified. |[optional]|
2174
+
|**maxResults**|**Integer**| The maximum number of results |[optional]|
2175
+
|**exclude**|[**Set<String>**](String.md)| The set of entities to exclude (e.g. 'replies' or 'retweets') |[optional][enum: replies, retweets]|
2176
+
|**paginationToken**|**String**| This parameter is used to get the next 'page' of results. |[optional]|
2177
+
|**startTime**|**OffsetDateTime**| YYYY-MM-DDTHH:mm:ssZ. The earliest UTC timestamp from which the Tweets will be provided. The since_id parameter takes precedence if it is also specified. |[optional]|
2178
+
|**endTime**|**OffsetDateTime**| YYYY-MM-DDTHH:mm:ssZ. The latest UTC timestamp to which the Tweets will be provided. The until_id parameter takes precedence if it is also specified. |[optional]|
2179
+
|**expansions**|[**Set<String>**](String.md)| A comma separated list of fields to expand. |[optional][enum: author_id, referenced_tweets.id, in_reply_to_user_id, geo.place_id, attachments.media_keys, attachments.poll_ids, entities.mentions.username, referenced_tweets.id.author_id]|
2180
+
|**tweetFields**|[**Set<String>**](String.md)| A comma separated list of Tweet fields to display. |[optional][enum: id, created_at, text, author_id, in_reply_to_user_id, referenced_tweets, attachments, withheld, geo, entities, public_metrics, possibly_sensitive, source, lang, context_annotations, non_public_metrics, promoted_metrics, organic_metrics, conversation_id, reply_settings]|
2181
+
|**userFields**|[**Set<String>**](String.md)| A comma separated list of User fields to display. |[optional][enum: id, created_at, name, username, protected, verified, withheld, profile_image_url, location, url, description, entities, pinned_tweet_id, public_metrics]|
2182
+
|**mediaFields**|[**Set<String>**](String.md)| A comma separated list of Media fields to display. |[optional][enum: media_key, duration_ms, height, preview_image_url, type, url, width, public_metrics, non_public_metrics, organic_metrics, promoted_metrics, alt_text, variants]|
2183
+
|**placeFields**|[**Set<String>**](String.md)| A comma separated list of Place fields to display. |[optional][enum: id, name, country_code, place_type, full_name, country, contained_within, geo]|
2184
+
|**pollFields**|[**Set<String>**](String.md)| A comma separated list of Poll fields to display. |[optional][enum: id, options, voting_status, end_datetime, duration_minutes]|
0 commit comments