Twitter4j reply to tweet not working
问题 I'm trying to reply to a tweet (that i post 10 seconds before) using twitter4j but it is only posting it to the timeline and not as a reply. post = mainTwitter.updateStatus(...); //1st twitter account StatusUpdate reply = new StatusUpdate(...); try { reply.setInReplyToStatusId(post.getId()); contextTwitter.updateStatus(reply); //2nd twitter account } catch (TwitterException e) { System.err.println("Couldn't post context"); e.printStackTrace(); } The id is not -1, it is the right long value.