* @throws SAXException the response is not a parsable XML.
*/
public PicasaAlbum createAlbum(String title, String description, String access, Date lastModified, Boolean canComment, String position, String location, URL cover) throws IOException, ParserConfigurationException, SAXException{
HttpRequest httpRequest = new HttpRequest(this.feedUrl);
if (this.googleapi != null){
KeyValuePair pair = this.googleapi.toAuthHeader();
httpRequest.addHeader(pair.key, pair.value);
}
String data = PicasaAlbum.createAlbumXML(title, description, access, lastModified, canComment, position, location, cover, null);
httpRequest.setData(data);
httpRequest.setMethod("POST");