Add Referer header so that it also works with HttpsUrlConnection

This commit is contained in:
wb9688 2020-03-20 14:14:02 +01:00
parent eb48524411
commit c852b13d5a
2 changed files with 3 additions and 0 deletions

View File

@ -130,6 +130,7 @@ public class YoutubeSearchExtractor extends SearchExtractor {
headers.put("X-YouTube-Client-Name", Collections.singletonList(youtubeMusicKeys[1]));
headers.put("X-YouTube-Client-Version", Collections.singletonList(youtubeMusicKeys[2]));
headers.put("Origin", Collections.singletonList("https://music.youtube.com"));
headers.put("Referer", Collections.singletonList("music.youtube.com"));
headers.put("Content-Type", Collections.singletonList("application/json"));
Response response = getDownloader().post(url, headers, json);
@ -266,6 +267,7 @@ public class YoutubeSearchExtractor extends SearchExtractor {
headers.put("X-YouTube-Client-Name", Collections.singletonList(youtubeMusicKeys[1]));
headers.put("X-YouTube-Client-Version", Collections.singletonList(youtubeMusicKeys[2]));
headers.put("Origin", Collections.singletonList("https://music.youtube.com"));
headers.put("Referer", Collections.singletonList("music.youtube.com"));
headers.put("Content-Type", Collections.singletonList("application/json"));
Response response = getDownloader().post(pageUrl, headers, json);

View File

@ -294,6 +294,7 @@ public class YoutubeParsingHelper {
headers.put("X-YouTube-Client-Name", Collections.singletonList(HARDCODED_YOUTUBE_MUSIC_KEYS[1]));
headers.put("X-YouTube-Client-Version", Collections.singletonList(HARDCODED_YOUTUBE_MUSIC_KEYS[2]));
headers.put("Origin", Collections.singletonList("https://music.youtube.com"));
headers.put("Referer", Collections.singletonList("music.youtube.com"));
headers.put("Content-Type", Collections.singletonList("application/json"));
String response = getDownloader().post(url, headers, json).responseBody();