* @version weibo4j-V2 1.0.1
* @see <a href="http://open.weibo.com/wiki/2/users/show">users/show</a>
* @since JDK 1.5
*/
public User showUserByScreenName(String screen_name) throws WeiboException {
return new User(Weibo.client.get(
WeiboConfig.getValue("baseURL") + "users/show.json",
new PostParameter[] { new PostParameter("screen_name",
screen_name) }).asJSONObject());
}