Replicate headers and params made by yt apps (#3290)
This commit is contained in:
commit
221d472127
@ -7,17 +7,16 @@
|
|||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
def add_yt_headers(request)
|
def add_yt_headers(request)
|
||||||
request.headers["user-agent"] ||= "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36"
|
if request.headers["User-Agent"] == "Crystal"
|
||||||
request.headers["accept-charset"] ||= "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
request.headers["User-Agent"] ||= "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36"
|
||||||
request.headers["accept"] ||= "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
end
|
||||||
request.headers["accept-language"] ||= "en-us,en;q=0.5"
|
request.headers["Accept-Charset"] ||= "ISO-8859-1,utf-8;q=0.7,*;q=0.7"
|
||||||
return if request.resource.starts_with? "/sorry/index"
|
request.headers["Accept"] ||= "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
|
||||||
request.headers["x-youtube-client-name"] ||= "1"
|
request.headers["Accept-Language"] ||= "en-us,en;q=0.5"
|
||||||
request.headers["x-youtube-client-version"] ||= "2.20200609"
|
|
||||||
# Preserve original cookies and add new YT consent cookie for EU servers
|
# Preserve original cookies and add new YT consent cookie for EU servers
|
||||||
request.headers["cookie"] = "#{request.headers["cookie"]?}; CONSENT=YES+"
|
request.headers["Cookie"] = "#{request.headers["cookie"]?}; CONSENT=YES+"
|
||||||
if !CONFIG.cookies.empty?
|
if !CONFIG.cookies.empty?
|
||||||
request.headers["cookie"] = "#{(CONFIG.cookies.map { |c| "#{c.name}=#{c.value}" }).join("; ")}; #{request.headers["cookie"]?}"
|
request.headers["Cookie"] = "#{(CONFIG.cookies.map { |c| "#{c.name}=#{c.value}" }).join("; ")}; #{request.headers["cookie"]?}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -7,9 +7,17 @@ module YoutubeAPI
|
|||||||
|
|
||||||
private DEFAULT_API_KEY = "AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8"
|
private DEFAULT_API_KEY = "AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8"
|
||||||
|
|
||||||
private ANDROID_APP_VERSION = "17.29.35"
|
private ANDROID_APP_VERSION = "17.33.42"
|
||||||
private ANDROID_SDK_VERSION = 30_i64
|
# github.com/TeamNewPipe/NewPipeExtractor/blob/943b7c033bb9d07ead63ddab4441c287653e4384/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java#L1308
|
||||||
private IOS_APP_VERSION = "17.30.1"
|
private ANDROID_USER_AGENT = "com.google.android.youtube/17.33.42 (Linux; U; Android 12; US) gzip"
|
||||||
|
private ANDROID_SDK_VERSION = 31_i64
|
||||||
|
private ANDROID_VERSION = "12"
|
||||||
|
private IOS_APP_VERSION = "17.33.2"
|
||||||
|
# github.com/TeamNewPipe/NewPipeExtractor/blob/943b7c033bb9d07ead63ddab4441c287653e4384/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java#L1330
|
||||||
|
private IOS_USER_AGENT = "com.google.ios.youtube/17.33.2 (iPhone14,5; U; CPU iOS 15_6 like Mac OS X;)"
|
||||||
|
# github.com/TeamNewPipe/NewPipeExtractor/blob/943b7c033bb9d07ead63ddab4441c287653e4384/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java#L1224
|
||||||
|
private IOS_VERSION = "15.6.0.19G71"
|
||||||
|
private WINDOWS_VERSION = "10.0"
|
||||||
|
|
||||||
# Enumerate used to select one of the clients supported by the API
|
# Enumerate used to select one of the clients supported by the API
|
||||||
enum ClientType
|
enum ClientType
|
||||||
@ -33,80 +41,130 @@ module YoutubeAPI
|
|||||||
# List of hard-coded values used by the different clients
|
# List of hard-coded values used by the different clients
|
||||||
HARDCODED_CLIENTS = {
|
HARDCODED_CLIENTS = {
|
||||||
ClientType::Web => {
|
ClientType::Web => {
|
||||||
name: "WEB",
|
name: "WEB",
|
||||||
version: "2.20220804.07.00",
|
name_proto: "1",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: "2.20220804.07.00",
|
||||||
screen: "WATCH_FULL_SCREEN",
|
api_key: DEFAULT_API_KEY,
|
||||||
|
screen: "WATCH_FULL_SCREEN",
|
||||||
|
os_name: "Windows",
|
||||||
|
os_version: WINDOWS_VERSION,
|
||||||
|
platform: "DESKTOP",
|
||||||
},
|
},
|
||||||
ClientType::WebEmbeddedPlayer => {
|
ClientType::WebEmbeddedPlayer => {
|
||||||
name: "WEB_EMBEDDED_PLAYER", # 56
|
name: "WEB_EMBEDDED_PLAYER",
|
||||||
version: "1.20220803.01.00",
|
name_proto: "56",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: "1.20220803.01.00",
|
||||||
screen: "EMBED",
|
api_key: DEFAULT_API_KEY,
|
||||||
|
screen: "EMBED",
|
||||||
|
os_name: "Windows",
|
||||||
|
os_version: WINDOWS_VERSION,
|
||||||
|
platform: "DESKTOP",
|
||||||
},
|
},
|
||||||
ClientType::WebMobile => {
|
ClientType::WebMobile => {
|
||||||
name: "MWEB",
|
name: "MWEB",
|
||||||
version: "2.20220805.01.00",
|
name_proto: "2",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: "2.20220805.01.00",
|
||||||
|
api_key: DEFAULT_API_KEY,
|
||||||
|
os_name: "Android",
|
||||||
|
os_version: ANDROID_VERSION,
|
||||||
|
platform: "MOBILE",
|
||||||
},
|
},
|
||||||
ClientType::WebScreenEmbed => {
|
ClientType::WebScreenEmbed => {
|
||||||
name: "WEB",
|
name: "WEB",
|
||||||
version: "2.20220804.00.00",
|
name_proto: "1",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: "2.20220804.00.00",
|
||||||
screen: "EMBED",
|
api_key: DEFAULT_API_KEY,
|
||||||
|
screen: "EMBED",
|
||||||
|
os_name: "Windows",
|
||||||
|
os_version: WINDOWS_VERSION,
|
||||||
|
platform: "DESKTOP",
|
||||||
},
|
},
|
||||||
|
|
||||||
# Android
|
# Android
|
||||||
|
|
||||||
ClientType::Android => {
|
ClientType::Android => {
|
||||||
name: "ANDROID",
|
name: "ANDROID",
|
||||||
|
name_proto: "3",
|
||||||
version: ANDROID_APP_VERSION,
|
version: ANDROID_APP_VERSION,
|
||||||
api_key: "AIzaSyA8eiZmM1FaDVjRy-df2KTyQ_vz_yYM39w",
|
api_key: "AIzaSyA8eiZmM1FaDVjRy-df2KTyQ_vz_yYM39w",
|
||||||
android_sdk_version: ANDROID_SDK_VERSION,
|
android_sdk_version: ANDROID_SDK_VERSION,
|
||||||
|
user_agent: ANDROID_USER_AGENT,
|
||||||
|
os_name: "Android",
|
||||||
|
os_version: ANDROID_VERSION,
|
||||||
|
platform: "MOBILE",
|
||||||
},
|
},
|
||||||
ClientType::AndroidEmbeddedPlayer => {
|
ClientType::AndroidEmbeddedPlayer => {
|
||||||
name: "ANDROID_EMBEDDED_PLAYER", # 55
|
name: "ANDROID_EMBEDDED_PLAYER",
|
||||||
version: ANDROID_APP_VERSION,
|
name_proto: "55",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: ANDROID_APP_VERSION,
|
||||||
|
api_key: DEFAULT_API_KEY,
|
||||||
},
|
},
|
||||||
ClientType::AndroidScreenEmbed => {
|
ClientType::AndroidScreenEmbed => {
|
||||||
name: "ANDROID", # 3
|
name: "ANDROID",
|
||||||
|
name_proto: "3",
|
||||||
version: ANDROID_APP_VERSION,
|
version: ANDROID_APP_VERSION,
|
||||||
api_key: DEFAULT_API_KEY,
|
api_key: DEFAULT_API_KEY,
|
||||||
screen: "EMBED",
|
screen: "EMBED",
|
||||||
android_sdk_version: ANDROID_SDK_VERSION,
|
android_sdk_version: ANDROID_SDK_VERSION,
|
||||||
|
user_agent: ANDROID_USER_AGENT,
|
||||||
|
os_name: "Android",
|
||||||
|
os_version: ANDROID_VERSION,
|
||||||
|
platform: "MOBILE",
|
||||||
},
|
},
|
||||||
|
|
||||||
# IOS
|
# IOS
|
||||||
|
|
||||||
ClientType::IOS => {
|
ClientType::IOS => {
|
||||||
name: "IOS", # 5
|
name: "IOS",
|
||||||
version: IOS_APP_VERSION,
|
name_proto: "5",
|
||||||
api_key: "AIzaSyB-63vPrdThhKuerbB2N_l7Kwwcxj6yUAc",
|
version: IOS_APP_VERSION,
|
||||||
|
api_key: "AIzaSyB-63vPrdThhKuerbB2N_l7Kwwcxj6yUAc",
|
||||||
|
user_agent: IOS_USER_AGENT,
|
||||||
|
device_make: "Apple",
|
||||||
|
device_model: "iPhone14,5",
|
||||||
|
os_name: "iPhone",
|
||||||
|
os_version: IOS_VERSION,
|
||||||
|
platform: "MOBILE",
|
||||||
},
|
},
|
||||||
ClientType::IOSEmbedded => {
|
ClientType::IOSEmbedded => {
|
||||||
name: "IOS_MESSAGES_EXTENSION", # 66
|
name: "IOS_MESSAGES_EXTENSION",
|
||||||
version: IOS_APP_VERSION,
|
name_proto: "66",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: IOS_APP_VERSION,
|
||||||
|
api_key: DEFAULT_API_KEY,
|
||||||
|
user_agent: IOS_USER_AGENT,
|
||||||
|
device_make: "Apple",
|
||||||
|
device_model: "iPhone14,5",
|
||||||
|
os_name: "iPhone",
|
||||||
|
os_version: IOS_VERSION,
|
||||||
|
platform: "MOBILE",
|
||||||
},
|
},
|
||||||
ClientType::IOSMusic => {
|
ClientType::IOSMusic => {
|
||||||
name: "IOS_MUSIC", # 26
|
name: "IOS_MUSIC",
|
||||||
version: "4.32",
|
name_proto: "26",
|
||||||
api_key: "AIzaSyBAETezhkwP0ZWA02RsqT1zu78Fpt0bC_s",
|
version: "5.21",
|
||||||
|
api_key: "AIzaSyBAETezhkwP0ZWA02RsqT1zu78Fpt0bC_s",
|
||||||
|
user_agent: "com.google.ios.youtubemusic/5.21 (iPhone14,5; U; CPU iOS 15_6 like Mac OS X;)",
|
||||||
|
device_make: "Apple",
|
||||||
|
device_model: "iPhone14,5",
|
||||||
|
os_name: "iPhone",
|
||||||
|
os_version: IOS_VERSION,
|
||||||
|
platform: "MOBILE",
|
||||||
},
|
},
|
||||||
|
|
||||||
# TV app
|
# TV app
|
||||||
|
|
||||||
ClientType::TvHtml5 => {
|
ClientType::TvHtml5 => {
|
||||||
name: "TVHTML5", # 7
|
name: "TVHTML5",
|
||||||
version: "7.20220325",
|
name_proto: "7",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: "7.20220325",
|
||||||
|
api_key: DEFAULT_API_KEY,
|
||||||
},
|
},
|
||||||
ClientType::TvHtml5ScreenEmbed => {
|
ClientType::TvHtml5ScreenEmbed => {
|
||||||
name: "TVHTML5_SIMPLY_EMBEDDED_PLAYER", # 85
|
name: "TVHTML5_SIMPLY_EMBEDDED_PLAYER",
|
||||||
version: "2.0",
|
name_proto: "85",
|
||||||
api_key: DEFAULT_API_KEY,
|
version: "2.0",
|
||||||
screen: "EMBED",
|
api_key: DEFAULT_API_KEY,
|
||||||
|
screen: "EMBED",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,6 +218,10 @@ module YoutubeAPI
|
|||||||
HARDCODED_CLIENTS[@client_type][:name]
|
HARDCODED_CLIENTS[@client_type][:name]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def name_proto : String
|
||||||
|
HARDCODED_CLIENTS[@client_type][:name_proto]
|
||||||
|
end
|
||||||
|
|
||||||
# :ditto:
|
# :ditto:
|
||||||
def version : String
|
def version : String
|
||||||
HARDCODED_CLIENTS[@client_type][:version]
|
HARDCODED_CLIENTS[@client_type][:version]
|
||||||
@ -179,6 +241,30 @@ module YoutubeAPI
|
|||||||
HARDCODED_CLIENTS[@client_type][:android_sdk_version]?
|
HARDCODED_CLIENTS[@client_type][:android_sdk_version]?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def user_agent : String?
|
||||||
|
HARDCODED_CLIENTS[@client_type][:user_agent]?
|
||||||
|
end
|
||||||
|
|
||||||
|
def os_name : String?
|
||||||
|
HARDCODED_CLIENTS[@client_type][:os_name]?
|
||||||
|
end
|
||||||
|
|
||||||
|
def device_make : String?
|
||||||
|
HARDCODED_CLIENTS[@client_type][:device_make]?
|
||||||
|
end
|
||||||
|
|
||||||
|
def device_model : String?
|
||||||
|
HARDCODED_CLIENTS[@client_type][:device_model]?
|
||||||
|
end
|
||||||
|
|
||||||
|
def os_version : String?
|
||||||
|
HARDCODED_CLIENTS[@client_type][:os_version]?
|
||||||
|
end
|
||||||
|
|
||||||
|
def platform : String?
|
||||||
|
HARDCODED_CLIENTS[@client_type][:platform]?
|
||||||
|
end
|
||||||
|
|
||||||
# Convert to string, for logging purposes
|
# Convert to string, for logging purposes
|
||||||
def to_s
|
def to_s
|
||||||
return {
|
return {
|
||||||
@ -226,6 +312,26 @@ module YoutubeAPI
|
|||||||
client_context["client"]["androidSdkVersion"] = android_sdk_version
|
client_context["client"]["androidSdkVersion"] = android_sdk_version
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if device_make = client_config.device_make
|
||||||
|
client_context["client"]["deviceMake"] = device_make
|
||||||
|
end
|
||||||
|
|
||||||
|
if device_model = client_config.device_model
|
||||||
|
client_context["client"]["deviceModel"] = device_model
|
||||||
|
end
|
||||||
|
|
||||||
|
if os_name = client_config.os_name
|
||||||
|
client_context["client"]["osName"] = os_name
|
||||||
|
end
|
||||||
|
|
||||||
|
if os_version = client_config.os_version
|
||||||
|
client_context["client"]["osVersion"] = os_version
|
||||||
|
end
|
||||||
|
|
||||||
|
if platform = client_config.platform
|
||||||
|
client_context["client"]["platform"] = platform
|
||||||
|
end
|
||||||
|
|
||||||
return client_context
|
return client_context
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -361,8 +467,18 @@ module YoutubeAPI
|
|||||||
)
|
)
|
||||||
# JSON Request data, required by the API
|
# JSON Request data, required by the API
|
||||||
data = {
|
data = {
|
||||||
"videoId" => video_id,
|
"contentCheckOk" => true,
|
||||||
"context" => self.make_context(client_config),
|
"videoId" => video_id,
|
||||||
|
"context" => self.make_context(client_config),
|
||||||
|
"racyCheckOk" => true,
|
||||||
|
"user" => {
|
||||||
|
"lockedSafetyMode" => false,
|
||||||
|
},
|
||||||
|
"playbackContext" => {
|
||||||
|
"contentPlaybackContext" => {
|
||||||
|
"html5Preference": "HTML5_PREF_WANTS",
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
# Append the additional parameters if those were provided
|
# Append the additional parameters if those were provided
|
||||||
@ -460,10 +576,17 @@ module YoutubeAPI
|
|||||||
url = "#{endpoint}?key=#{client_config.api_key}&prettyPrint=false"
|
url = "#{endpoint}?key=#{client_config.api_key}&prettyPrint=false"
|
||||||
|
|
||||||
headers = HTTP::Headers{
|
headers = HTTP::Headers{
|
||||||
"Content-Type" => "application/json; charset=UTF-8",
|
"Content-Type" => "application/json; charset=UTF-8",
|
||||||
"Accept-Encoding" => "gzip, deflate",
|
"Accept-Encoding" => "gzip, deflate",
|
||||||
|
"x-goog-api-format-version" => "2",
|
||||||
|
"x-youtube-client-name" => client_config.name_proto,
|
||||||
|
"x-youtube-client-version" => client_config.version,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if user_agent = client_config.user_agent
|
||||||
|
headers["User-Agent"] = user_agent
|
||||||
|
end
|
||||||
|
|
||||||
# Logging
|
# Logging
|
||||||
LOGGER.debug("YoutubeAPI: Using endpoint: \"#{endpoint}\"")
|
LOGGER.debug("YoutubeAPI: Using endpoint: \"#{endpoint}\"")
|
||||||
LOGGER.trace("YoutubeAPI: ClientConfig: #{client_config}")
|
LOGGER.trace("YoutubeAPI: ClientConfig: #{client_config}")
|
||||||
|
Loading…
Reference in New Issue
Block a user