import weibo4j.org.json.JSONObject;
public class GetMentionsIds {
public static void main(String[] args) {
String access_token = args[0];
Weibo weibo = new Weibo();
weibo.setToken(access_token);
Timeline tm = new Timeline();
try {
JSONObject ids = tm.getFriendsTimelineIds();
Log.logInfo(ids.toString());
} catch (WeiboException e) {