|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface StatusMethodsAsync
Method Summary | |
---|---|
void |
destroyStatus(long statusId)
Destroys the status specified by the required ID parameter. |
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. |
void |
updateStatus(java.lang.String status)
Updates the user's status asynchronously This method calls http://api.twitter.com/1/statuses/update |
void |
updateStatus(java.lang.String status,
GeoLocation location)
Updates the user's status asynchronously. |
void |
updateStatus(java.lang.String status,
long inReplyToStatusId)
Updates the user's status asynchronously This method calls http://api.twitter.com/1/statuses/update |
void |
updateStatus(java.lang.String status,
long inReplyToStatusId,
GeoLocation location)
Updates the user's status. |
Method Detail |
---|
void showStatus(long id)
id
- intvoid updateStatus(java.lang.String status)
status
- Stringvoid updateStatus(java.lang.String status, GeoLocation location)
status
- the text of your status updatelocation
- The location that this tweet refers to.void updateStatus(java.lang.String status, long inReplyToStatusId)
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)
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 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.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |