public interface StatusMethods
Modifier and Type | Method and Description |
---|---|
Status |
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. |
ResponseList<User> |
getRetweetedBy(long statusId)
Deprecated.
use
getRetweetedBy(long, twitter4j.Paging) instead |
ResponseList<User> |
getRetweetedBy(long statusId,
Paging paging)
Show user objects of up to 100 members who retweeted the status.
|
IDs |
getRetweetedByIDs(long statusId)
Deprecated.
use
getRetweetedByIDs(long, twitter4j.Paging) instead |
IDs |
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 |
ResponseList<Status> |
getRetweets(long statusId)
Returns up to 100 of the first retweets of a given tweet.
|
Status |
retweetStatus(long statusId)
Retweets a tweet.
|
Status |
showStatus(long id)
Returns a single status, specified by the id parameter below.
|
Status |
updateStatus(StatusUpdate latestStatus)
Updates the authenticating user's status.
|
Status |
updateStatus(java.lang.String status)
Updates the authenticating user's status.
|
Status showStatus(long id) throws TwitterException
id
- the numerical ID of the status you're trying to retrieveTwitterException
- when Twitter service or network is unavailableStatus updateStatus(java.lang.String status) throws TwitterException
status
- the text of your status updateTwitterException
- when Twitter service or network is unavailableStatus updateStatus(StatusUpdate latestStatus) throws TwitterException
latestStatus
- the latest status to be updated.TwitterException
- when Twitter service or network is unavailableStatus destroyStatus(long statusId) throws TwitterException
statusId
- The ID of the status to destroy.TwitterException
- when Twitter service or network is unavailableStatus retweetStatus(long statusId) throws TwitterException
statusId
- The ID of the status to retweet.TwitterException
- when Twitter service or network is unavailableResponseList<Status> getRetweets(long statusId) throws TwitterException
statusId
- The numerical ID of the tweet you want the retweets of.TwitterException
- when Twitter service or network is unavailableResponseList<User> getRetweetedBy(long statusId) throws TwitterException
getRetweetedBy(long, twitter4j.Paging)
insteadstatusId
- The ID of the status you want to get retweeters ofTwitterException
- when Twitter service or network is unavailableResponseList<User> getRetweetedBy(long statusId, Paging paging) throws TwitterException
statusId
- The ID of the status you want to get retweeters ofpaging
- controls pagination. Supports count and page parameters.TwitterException
- when Twitter service or network is unavailableIDs getRetweetedByIDs(long statusId) throws TwitterException
getRetweetedByIDs(long, twitter4j.Paging)
insteadstatusId
- The ID of the status you want to get retweeters ofTwitterException
- when Twitter service or network is unavailableIDs getRetweetedByIDs(long statusId, Paging paging) throws TwitterException
statusId
- The ID of the status you want to get retweeters ofpaging
- controls pagination. Supports count and page parameters.TwitterException
- when Twitter service or network is unavailable