public interface StatusMethodsAsync
Modifier and Type | Method and Description |
---|---|
void |
destroyStatus(long statusId)
Destroys the status specified by the required ID parameter.
Usage note: The authenticating user must be the author of the specified status. |
void |
getRetweetedBy(long statusId)
Show user objects of up to 100 members who retweeted the status.
|
void |
getRetweetedBy(long statusId,
Paging paging)
Deprecated.
use
StatusMethods.getRetweetedBy(long) instead. |
void |
getRetweetedByIDs(long statusId)
Show user ids of up to 100 users who retweeted the status represented by id
This method calls http://api.twitter.com/1/statuses/:id/retweeted_by/ids.format |
void |
getRetweetedByIDs(long statusId,
Paging paging)
Deprecated.
use
getRetweetedByIDs(long) instead. |
void |
getRetweets(long statusId)
Returns up to 100 of the first retweets of a given tweet.
|
void |
retweetStatus(long statusId)
Retweets a tweet.
|
void |
showStatus(long id)
Returns a single status, specified by the id parameter below.
|
void |
updateStatus(StatusUpdate latestStatus)
Updates the authenticating user's status.
|
void |
updateStatus(java.lang.String status)
Updates the authenticating user's status.
|
void |
updateStatus(java.lang.String status,
GeoLocation location)
Deprecated.
use
updateStatus(StatusUpdate) instead. |
void |
updateStatus(java.lang.String status,
long inReplyToStatusId)
Deprecated.
use
updateStatus(StatusUpdate) instead. |
void |
updateStatus(java.lang.String status,
long inReplyToStatusId,
GeoLocation location)
Deprecated.
use
updateStatus(StatusUpdate) instead. |
void showStatus(long id)
id
- intvoid updateStatus(java.lang.String status)
status
- Stringvoid updateStatus(java.lang.String status, GeoLocation location)
updateStatus(StatusUpdate)
instead.status
- the text of your status updatelocation
- The location that this tweet refers to.void updateStatus(java.lang.String status, long inReplyToStatusId)
updateStatus(StatusUpdate)
instead.status
- StringinReplyToStatusId
- The ID of an existing status that the status to be posted is in reply to. This implicitly sets the in_reply_to_user_id attribute of the resulting status to the user ID of the message being replied to. Invalid/missing status IDs will be ignored.void updateStatus(java.lang.String status, long inReplyToStatusId, GeoLocation location)
updateStatus(StatusUpdate)
instead.status
- the text of your status updateinReplyToStatusId
- The ID of an existing status that the status to be posted is in reply to. This implicitly sets the in_reply_to_user_id attribute of the resulting status to the user ID of the message being replied to. Invalid/missing status IDs will be ignored.location
- The location that this tweet refers to.void updateStatus(StatusUpdate latestStatus)
latestStatus
- the latest status to be updated.void destroyStatus(long statusId)
statusId
- Stringvoid retweetStatus(long statusId)
statusId
- The ID of the status to retweet.void getRetweets(long statusId)
statusId
- The numerical ID of the tweet you want the retweets of.void getRetweetedBy(long statusId)
statusId
- The ID of the status you want to get retweeters ofvoid getRetweetedBy(long statusId, Paging paging)
StatusMethods.getRetweetedBy(long)
instead.statusId
- The ID of the status you want to get retweeters ofpaging
- specify your paging requirementsvoid getRetweetedByIDs(long statusId)
statusId
- The ID of the status you want to get retweeters ofvoid getRetweetedByIDs(long statusId, Paging paging)
getRetweetedByIDs(long)
instead.statusId
- The ID of the status you want to get retweeters ofpaging
- specify your paging requirements