1819202122232425262728
String comments = args[1]; String id = args[2]; String cid = args[3]; Comments cm = new Comments(); try { Comment com = cm.replyComment(cid, id, comments); Log.logInfo(com.toString()); } catch (WeiboException e) { e.printStackTrace(); } }
1314151617181920212223
String id = args[2]; String cid = args[3]; Comments cm = new Comments(); cm.client.setToken(access_token); try { Comment com = cm.replyComment(cid, id, comments); Log.logInfo(com.toString()); } catch (WeiboException e) { e.printStackTrace(); } }