如何在 Chrome 上获取最大重定向次数?(在 ERR_TOO_MANY_REDIRECTS 之前)

如何在 Chrome 上获取最大重定向次数?(在 ERR_TOO_MANY_REDIRECTS 之前)

比如在 Firefox 上,人们可以进入 about:config 并查找设置network.http.redirection-limit,那么 Chrome 上的等效项是什么?

答案1

是 20,而且实际上规范定义,因此没有配置选项。我在 Chromium 的源代码中找到了它净/url_request/url_request.h

// Max number of http redirects to follow. The Fetch spec says: "If
// request's redirect count is twenty, return a network error."
// https://fetch.spec.whatwg.org/#http-redirect-fetch
static constexpr int kMaxRedirects = 20;

相关内容