* href="http://open.weibo.com/wiki/2/statuses/update">statuses/update</a>
* @since JDK 1.5
*/
public Status UpdateStatus(String status, Float lat, Float longs, String annotations)
throws WeiboException {
return new Status(client.post(WeiboConfig.getValue("baseURL") + "statuses/update.json",
new PostParameter[] {new PostParameter("status", status),
new PostParameter("lat", lat.toString()), new PostParameter("long", longs.toString()),
new PostParameter("annotations", annotations)}));
}