use of twitter4j.StatusUpdate in project mobile-android by photo.
the class TwitterFragment method sendTweet.
public static void sendTweet(String message, Twitter twitter) throws TwitterException {
StatusUpdate update = new StatusUpdate(message);
TrackerUtils.trackSocial("twitter", "status update", message);
twitter.updateStatus(update);
}
use of twitter4j.StatusUpdate in project twitter4j by yusuke.
the class UploadMultipleImages method main.
/**
* Usage: java twitter4j.examples.tweets.UploadMultipleImages [text] [file1] [file2] ...
*
* @param args message
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.tweets.UploadMultipleImages [text] [file1] [file2] ...");
System.exit(-1);
}
try {
Twitter twitter = new TwitterFactory().getInstance();
long[] mediaIds = new long[args.length - 1];
for (int i = 1; i < args.length; i++) {
System.out.println("Uploading...[" + i + "/" + (args.length - 1) + "][" + args[i] + "]");
UploadedMedia media = twitter.uploadMedia(new File(args[i]));
System.out.println("Uploaded: id=" + media.getMediaId() + ", w=" + media.getImageWidth() + ", h=" + media.getImageHeight() + ", type=" + media.getImageType() + ", size=" + media.getSize());
mediaIds[i - 1] = media.getMediaId();
}
StatusUpdate update = new StatusUpdate(args[0]);
update.setMediaIds(mediaIds);
Status status = twitter.updateStatus(update);
System.out.println("Successfully updated the status to [" + status.getText() + "][" + status.getId() + "].");
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to update status: " + te.getMessage());
System.exit(-1);
}
}
use of twitter4j.StatusUpdate in project Talon-for-Twitter by klinker24.
the class TwitLongerHelper method createPost.
/**
* posts the status onto Twitlonger, it then posts the shortened status (with link) to the user's twitter and updates the status on twitlonger
* to include the posted status's id.
*
* @return id of the status that was posted to twitter
*/
public long createPost() {
TwitLongerStatus status = postToTwitLonger();
long statusId;
try {
Status postedStatus;
StatusUpdate update = new StatusUpdate(status.getText());
if (replyToStatusId != 0) {
update.setInReplyToStatusId(replyToStatusId);
}
if (location != null) {
update.setLocation(location);
}
postedStatus = twitter.updateStatus(update);
statusId = postedStatus.getId();
updateTwitlonger(status, statusId);
} catch (Exception e) {
e.printStackTrace();
statusId = 0;
}
// if zero, then it failed
return statusId;
}
Aggregations