/* * Copyright 2007 Yusuke Yamamoto * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package twitter4j.api; import twitter4j.OEmbedRequest; import twitter4j.StatusUpdate; /** * @author Joern Huxhorn - jhuxhorn at googlemail.com */ public interface TweetsResourcesAsync { /** * Returns up to 100 of the first retweets of a given tweet. * <br>This method calls http://api.twitter.com/1.1/statuses/retweets * * @param statusId The numerical ID of the tweet you want the retweets of. * @see <a href="https://dev.twitter.com/docs/api/1.1/get/statuses/retweets/:id">Tweets Resources › statuses/retweets/:id</a> * @since Twitter4J 2.1.0 */ void getRetweets(long statusId); /** * Returns a single status, specified by the id parameter below. The status's author will be returned inline. * <br>This method calls http://api.twitter.com/1.1/statuses/show * * @param id int * @see <a href="https://dev.twitter.com/docs/api/1.1/get/statuses/show/:id">GET statuses/show/:id | Twitter Developers</a> * @since Twitter4J 2.0.1 */ void showStatus(long id); /** * Destroys the status specified by the required ID parameter.<br> * Usage note: The authenticating user must be the author of the specified status. * <br>This method calls http://api.twitter.com/1.1/statuses/destroy * * @param statusId String * @see <a href="https://dev.twitter.com/docs/api/1.1/post/statuses/destroy/:id">POST statuses/destroy/:id | Twitter Developers</a> * @since 1.1.2 */ void destroyStatus(long statusId); /** * Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. * <br>This method calls http://api.twitter.com/1.1/statuses/update * * @param status String * @see <a href="https://dev.twitter.com/docs/api/1.1/post/statuses/update">POST statuses/update | Twitter Developers</a> * @since Twitter4J 2.0.1 */ void updateStatus(String status); /** * Updates the authenticating user's status. A status update with text identical to the authenticating user's text identical to the authenticating user's current status will be ignored to prevent duplicates. * <br>Statuses over 140 characters will be forcibly truncated. * <br>This method calls http://api.twitter.com/1.1/statuses/update * * @param status the latest status to be updated. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/statuses/update">POST statuses/update | Twitter Developers</a> * @since Twitter4J 2.1.1 */ void updateStatus(StatusUpdate status); /** * Retweets a tweet. Returns the original tweet with retweet details embedded. * <br>This method calls http://api.twitter.com/1.1/statuses/retweet * * @param statusId The ID of the status to retweet. * @see <a href="https://dev.twitter.com/docs/api/1.1/post/statuses/retweet/:id">POST statuses/retweet/:id | Twitter Developers</a> * @since Twitter4J 2.0.10 */ void retweetStatus(long statusId); /** * Returns information allowing the creation of an embedded representation of a Tweet on third party sites. See the <a href="http://oembed.com/">oEmbed</a> specification for information about the response format. * While this endpoint allows a bit of customization for the final appearance of the embedded Tweet, be aware that the appearance of the rendered Tweet may change over time to be consistent with Twitter's <a href="https://dev.twitter.com/terms/display-requirements">Display Requirements</a>. Do not rely on any class or id parameters to stay constant in the returned markup. * <br>This method calls http://api.twitter.com/1.1/statuses/oembed.json * @param req request * @see <a href="https://dev.twitter.com/docs/api/1.1/get/statuses/oembed">GET statuses/oembed | Twitter Developers</a> * @since Twitter4J 3.0.2 */ void getOEmbed(OEmbedRequest req); }