Noticed that if you run with proxies that never has been used you should add a CookieContainer so that it will lower the amount of redirects. I run with the code below and it works for most of my proxies.
CookieContainer cookieContainer = new CookieContainer();
cookieContainer.Add(new Uri("https://www.youtube.com"), new Cookie("CONSENT", "YES+cb.20210629-13-p0.en+FX+407"));
Hey again,
Noticed that if you run with proxies that never has been used you should add a CookieContainer so that it will lower the amount of redirects. I run with the code below and it works for most of my proxies.