910111213141516171819
public static void main(String[] args) { Weibo weibo = new Weibo(); weibo.setToken(args[0]); Search search = new Search(); try { search.searchSuggestionsApps(args[1], 10); } catch (WeiboException e) { e.printStackTrace(); } }
89101112131415161718
public static void main(String[] args) { String access_token = args[0]; Search search = new Search(); search.client.setToken(access_token); try { search.searchSuggestionsApps(args[1], 10); } catch (WeiboException e) { e.printStackTrace(); } }