use of twitter4j.TwitterException in project android-priority-jobqueue by yigit.
the class PostTweetJob method shouldReRunOnThrowable.
@Override
protected RetryConstraint shouldReRunOnThrowable(Throwable throwable, int runCount, int maxRunCount) {
if (throwable instanceof TwitterException) {
//if it is a 4xx error, stop
TwitterException twitterException = (TwitterException) throwable;
int errorCode = twitterException.getErrorCode();
return errorCode < 400 || errorCode > 499 ? RetryConstraint.RETRY : RetryConstraint.CANCEL;
}
return RetryConstraint.RETRY;
}
use of twitter4j.TwitterException in project twitter4j by yusuke.
the class ShowStatus method main.
/**
* Usage: java twitter4j.examples.tweets.ShowStatus [status id]
*
* @param args message
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.tweets.ShowStatus [status id]");
System.exit(-1);
}
try {
Twitter twitter = new TwitterFactory().getInstance();
Status status = twitter.showStatus(Long.parseLong(args[0]));
System.out.println("@" + status.getUser().getScreenName() + " - " + status.getText());
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to show status: " + te.getMessage());
System.exit(-1);
}
}
use of twitter4j.TwitterException 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.TwitterException in project twitter4j by yusuke.
the class ImgLyUpload method postUpload.
@Override
protected String postUpload() throws TwitterException {
int statusCode = httpResponse.getStatusCode();
if (statusCode != 200)
throw new TwitterException("ImgLy image upload returned invalid status code", httpResponse);
String response = httpResponse.asString();
try {
JSONObject json = new JSONObject(response);
if (!json.isNull("url"))
return json.getString("url");
} catch (JSONException e) {
throw new TwitterException("Invalid ImgLy response: " + response, e);
}
throw new TwitterException("Unknown ImgLy response", httpResponse);
}
use of twitter4j.TwitterException in project twitter4j by yusuke.
the class CreateFavorite method main.
/**
* Usage: java twitter4j.examples.favorite.CreateFavorite [status id]
*
* @param args message
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.favorite.CreateFavorite [status id]");
System.exit(-1);
}
try {
Twitter twitter = new TwitterFactory().getInstance();
twitter.createFavorite(Long.parseLong(args[0]));
System.out.println("Successfully favorited status [" + args[0] + "].");
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to favorite status: " + te.getMessage());
System.exit(-1);
}
}
Aggregations