use of twitter4j.TwitterException in project twitter4j by yusuke.
the class CreateBlock method main.
/**
* Usage: java twitter4j.examples.block.CreateBlock [screen name]
*
* @param args message
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.block.CreateBlock [screen name]");
System.exit(-1);
}
try {
Twitter twitter = new TwitterFactory().getInstance();
twitter.createBlock(args[0]);
System.out.println("Successfully blocked user [" + args[0] + "].");
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to block user: " + te.getMessage());
System.exit(-1);
}
}
use of twitter4j.TwitterException in project twitter4j by yusuke.
the class DestroyBlock method main.
/**
* Usage: java twitter4j.examples.block.DestroyBlock [screen name]
*
* @param args message
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.block.DestroyBlock [screen name]");
System.exit(-1);
}
try {
Twitter twitter = new TwitterFactory().getInstance();
twitter.destroyBlock(args[0]);
System.out.println("Successfully unblocked user [" + args[0] + "].");
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to unblock user: " + te.getMessage());
System.exit(-1);
}
}
use of twitter4j.TwitterException in project twitter4j by yusuke.
the class GetBlockingUsersIDs method main.
/**
* Usage: java twitter4j.examples.block.GetBlockingUsersIDs
*
* @param args message
*/
public static void main(String[] args) {
try {
Twitter twitter = new TwitterFactory().getInstance();
IDs ids = twitter.getBlocksIDs();
for (long id : ids.getIDs()) {
System.out.println(id);
}
System.out.println("done.");
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to get blocking user ids: " + te.getMessage());
System.exit(-1);
}
}
use of twitter4j.TwitterException in project twitter4j by yusuke.
the class DestroyDirectMessage method main.
/**
* Usage: java twitter4j.examples.directmessages.DestroyDirectMessage [message id]
*
* @param args message
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.directmessages.DestroyDirectMessage [message id]");
System.exit(-1);
}
try {
Twitter twitter = new TwitterFactory().getInstance();
twitter.destroyDirectMessage(Long.parseLong(args[0]));
System.out.println("Successfully deleted message [" + args[0] + "].");
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to delete message: " + te.getMessage());
System.exit(-1);
}
}
use of twitter4j.TwitterException in project twitter4j by yusuke.
the class ShowDirectMessage method main.
/**
* Usage: java twitter4j.examples.directmessage.ShowDirectMessage [message id]
*
* @param args String[]
*/
public static void main(String[] args) {
if (args.length < 1) {
System.out.println("Usage: java twitter4j.examples.directmessage.ShowDirectMessage [message id]");
System.exit(-1);
}
Twitter twitter = new TwitterFactory().getInstance();
try {
DirectMessage message = twitter.showDirectMessage(Long.parseLong(args[0]));
System.out.println("From: @" + message.getSenderScreenName() + " id:" + message.getId() + " - " + message.getText());
System.exit(0);
} catch (TwitterException te) {
te.printStackTrace();
System.out.println("Failed to get message: " + te.getMessage());
System.exit(-1);
}
}
Aggregations