I have problem, that this code, tweeting only replyMessage, without replying
String replyMessage="@Pravdyk1";
ResponseList<Status> list = twitter.getUserTimeline(3015573621l);
Status st = list.get(0);
//twitter.retweetStatus(st.getId());
StatusUpdate statusUpdate = new StatusUpdate(replyMessage);
statusUpdate.setInReplyToStatusId(st.getId());
twitter.updateStatus(statusUpdate);
I cant find resolving
Problem was with message of reply Status. I had to use "@" + st.getUser().getScreenName()
combination