new PostParameter("q", q)
}).asJSONArray();
}
public JSONArray searchSuggestionsCompanies(String q,int count) throws WeiboException{
return Weibo.client.get(WeiboConfig.getValue("baseURL")+"search/suggestions/companies.json",new PostParameter[]{
new PostParameter("q", q),
new PostParameter("count", count)
}).asJSONArray();
}