Looking at the HTTP response, the status code is 302 (it redirects you to provide an authentication token), and the "Set-Cookie" field is not in the header . You can disable this.
if (res.getStatusLine().getStatusCode() == 302 && res.getHeaders("Set-Cookie").length == 0) {
}
Failure to receive this cookie from Google seems to mean time to grab a new token from AccountManager.