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