This SDK is managed by the SDK Fabric project, a global infrastructure to automatically generate SDKs for every API.
You can find more information about this SDK at TypeHub: https://app.typehub.cloud/d/sdkfabric/twitter
import org.sdkfabric.twitter.Client;
Client client = Client::build("[access_token]");
// Returns a variety of information about the Tweet specified by the requested ID or list of IDs.
Tweet_Collection response = client.tweet().getAll("ids", "expansions", null);
// Returns a variety of information about a single Tweet specified by the requested ID.
Tweet_Entity response = client.tweet().get("tweet_id", "expansions", null);
// Creates a Tweet on behalf of an authenticated user.
Tweet_Create_Response response = client.tweet().create(new Tweet());
// Allows a user or authenticated user ID to delete a Tweet.
Tweet_Delete_Response response = client.tweet().delete("tweet_id");
// Hides or unhides a reply to a Tweet.
HideReply_Response response = client.tweet().hideReply("tweet_id", new HideReply());
// Allows you to get information about a Tweet’s liking users.
User_Collection response = client.tweet().getLikingUsers("tweet_id", "expansions", 1, "pagination_token");
// The Usage API in the Twitter API v2 allows developers to programmatically retrieve their project usage.
Tweet_Usage_Response response = client.usage().getTweets();
// Returns a variety of information about one or more users specified by the requested IDs.
User_Collection response = client.user().getAll("ids", "expansions", null);
// Returns a variety of information about a single user specified by the requested ID.
User response = client.user().get("user_id", "expansions", null);
// Allows you to retrieve a collection of the most recent Tweets and Retweets posted by you and users you follow.
Tweet_Collection response = client.user().getTimeline("user_id", "exclude", "expansions", null, null);
// Tweets liked by a user.
Tweet_Collection response = client.user().getLikedTweets("user_id", "expansions", 1, "pagination_token", null);
// Allows a user or authenticated user ID to unlike a Tweet.
Like_Response response = client.user().removeLike("user_id", "tweet_id");
// Causes the user ID identified in the path parameter to Like the target Tweet.
Like_Response response = client.user().createLike("user_id", new Single_Tweet());
// Returns a variety of information about one or more users specified by their usernames.
User_Collection response = client.user().findByName("usernames", "expansions", null);
// Returns information about an authorized user.
User response = client.user().getMe("expansions", "fields");
// Allows you to get an authenticated user's 800 most recent bookmarked Tweets.
Tweet_Collection response = client.bookmark().getAll("user_id", "expansions", "pagination_token", null);
Bookmark_Response response = client.bookmark().create("user_id", new Single_Tweet());
Bookmark_Response response = client.bookmark().delete("user_id", "tweet_id");
Tweet_Collection response = client.search().getRecent("query", "sort_order", "expansions", null, null);
// Returns Quote Tweets for a Tweet specified by the requested Tweet ID.
Tweet_Collection response = client.quote().getAll("tweet_id", "exclude", "expansions", 1, "pagination_token", null);
// The Trends lookup endpoint allow developers to get the Trends for a location, specified using the where-on-earth id (WOEID).
Trend_Collection response = client.trends().getByWoeid("woeid");
// Returns the Retweets for a given Tweet ID.
Tweet_Collection response = client.retweet().getAll("tweet_id", "expansions", 1, null);