1314151617181920212223
String mid = args[1]; Weibo weibo = new Weibo(); weibo.setToken(access_token); Timeline tm = new Timeline(); try { JSONObject id = tm.QueryId( mid, 1,1); Log.logInfo(String.valueOf(id)); } catch (WeiboException e) { e.printStackTrace(); }
1213141516171819202122
String access_token = args[0]; String mid = args[1]; Timeline tm = new Timeline(); tm.client.setToken(access_token); try { JSONObject id = tm.QueryId(mid, 1, 1); Log.logInfo(String.valueOf(id)); } catch (WeiboException e) { e.printStackTrace(); }