return new KeyValuePair("Authorization", String.format("GoogleLogin auth=\"%s\"", this.authToken));
}
private void login() throws IOException{
HttpRequest httpRequest = new HttpRequest(new URL("https://www.google.com/accounts/ClientLogin"));
HttpQuery httpQuery = new HttpQuery();
httpQuery.add("Email", this.user);
httpQuery.add("Passwd", this.password);
httpQuery.add("service", this.service);
httpQuery.add("source", this.source);
httpRequest.setData(httpQuery.toString());
String response = httpRequest.send();
String responses[] = response.split("\n");
String authHeader = "Auth=";
for (String r : responses){
if (r.indexOf(authHeader) == 0){