You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
"errors": [
{
"code": "internal.domain.name.cannot_compute_etld1",
"summary": "Internal Error",
"message": "Could not compute eTLD+1."
},
{
"code": "response.no_header",
"summary": "No HSTS header",
"message": "Response error: No HSTS header is present on the response."
},
{
"code": "redirects.too_many",
"summary": "Too many redirects",
"message": "There are more than 3 redirects starting from `http://blogspot.com`."
},
{
"code": "redirects.http.first_redirect.insecure",
"summary": "HTTP does not redirect to HTTPS",
"message": "`http://blogspot.com` (HTTP) redirects to `http://www.blogger.com/`. The first redirect from `http://blogspot.com` should be to a secure page on the same host (`https://blogspot.com`)."
},
{
"code": "redirects.too_many",
"summary": "Too many redirects",
"message": "There are more than 3 redirects starting from `https://blogspot.com`."
}
],
"warnings": []
}
The text was updated successfully, but these errors were encountered:
@this is intentional; one is starting from HTTP, the other is starting from HTTPS.
If HTTP redirects to HTTPS on the same host, then having two errors is usually redundant, but there are cases where it's useful to have both.
Would you prefer if they were different error codes, at least?
Oh, you're right. I didn't see that they were from different URLs. Different error codes would be nice, although I guess I could always coalesce errors on my end.
lgarron
changed the title
blogspot.com returns error code 'redirects.too_many' twice
Return distinct error codes for 'redirects.too_many' depending on whether the starting URL is HTTP/HTTPS
Jul 7, 2016
The Object looks like this:
The text was updated successfully, but these errors were encountered: