Add YouTube-Client headers to HTTP requests

pull/817/head
Omar Roth 2019-10-10 22:03:25 -04:00
rodzic f5c7bbfda8
commit dad885c051
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B8254FB7EC3D37F2
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -86,6 +86,16 @@ class HTTPClient < HTTP::Client
return opts
end
def exec(request)
if self.host == "www.youtube.com"
request.headers["x-youtube-client-name"] = "1"
request.headers["x-youtube-client-version"] = "2.20180719"
request.headers["user-agent"] = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"
end
super
end
end
def get_proxies(country_code = "US")