forked from midou/invidious
update params for fetching stream data (#4156)
* update params for fetching stream data * Remove link about special parameter
This commit is contained in:
parent
069e91d2a6
commit
0e4d3d89fc
@ -137,9 +137,8 @@ end
|
|||||||
|
|
||||||
def try_fetch_streaming_data(id : String, client_config : YoutubeAPI::ClientConfig) : Hash(String, JSON::Any)?
|
def try_fetch_streaming_data(id : String, client_config : YoutubeAPI::ClientConfig) : Hash(String, JSON::Any)?
|
||||||
LOGGER.debug("try_fetch_streaming_data: [#{id}] Using #{client_config.client_type} client.")
|
LOGGER.debug("try_fetch_streaming_data: [#{id}] Using #{client_config.client_type} client.")
|
||||||
# CgIQBg is a workaround for streaming URLs that returns a 403.
|
# 2AMBCgIQBg is a workaround for streaming URLs that returns a 403.
|
||||||
# See https://github.com/iv-org/invidious/issues/4027#issuecomment-1666944520
|
response = YoutubeAPI.player(video_id: id, params: "2AMBCgIQBg", client_config: client_config)
|
||||||
response = YoutubeAPI.player(video_id: id, params: "CgIQBg", client_config: client_config)
|
|
||||||
|
|
||||||
playability_status = response["playabilityStatus"]["status"]
|
playability_status = response["playabilityStatus"]["status"]
|
||||||
LOGGER.debug("try_fetch_streaming_data: [#{id}] Got playabilityStatus == #{playability_status}.")
|
LOGGER.debug("try_fetch_streaming_data: [#{id}] Got playabilityStatus == #{playability_status}.")
|
||||||
|
Loading…
Reference in New Issue
Block a user