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)
Deprecated.
use
getRetweetedBy(long, twitter4j.Paging) instead |
void |
getRetweetedBy(long statusId,
Paging paging)
Show user objects of up to 100 members who retweeted the status.
|
void |
getRetweetedByIDs(long statusId)
Deprecated.
use
getRetweetedByIDs(long, twitter4j.Paging) instead |
void |
getRetweetedByIDs(long statusId,
Paging paging)
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 |
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 showStatus(long id)
id
- intvoid updateStatus(java.lang.String status)
status
- Stringvoid 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)
getRetweetedBy(long, twitter4j.Paging)
insteadstatusId
- The ID of the status you want to get retweeters ofvoid getRetweetedBy(long statusId, Paging paging)
statusId
- The ID of the status you want to get retweeters ofpaging
- controls pagination. Supports count and page parameters.void getRetweetedByIDs(long statusId)
getRetweetedByIDs(long, twitter4j.Paging)
insteadstatusId
- The ID of the status you want to get retweeters ofvoid getRetweetedByIDs(long statusId, Paging paging)
statusId
- The ID of the status you want to get retweeters ofpaging
- controls pagination. Supports count and page parameters.