public String[] getFollowersIdsById(String uid, Integer count,
Integer cursor) throws WeiboException {
return User.constructIds(Weibo.client.get(
WeiboConfig.getValue("baseURL")
+ "friendships/followers/ids.json",
new PostParameter[] { new PostParameter("uid", uid),
new PostParameter("count", count.toString()),
new PostParameter("cursor", cursor.toString()) }));
}