Skip to content

Commit

Permalink
Fix video query params
Browse files Browse the repository at this point in the history
More in: 0xced#534
  • Loading branch information
pahnev committed Jun 29, 2021
1 parent 23f7659 commit 82df973
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion XCDYouTubeKit/XCDYouTubeVideoOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,16 @@ - (void) startNextRequest
NSString *eventLabel = [self.eventLabels objectAtIndex:0];
[self.eventLabels removeObjectAtIndex:0];

NSDictionary *query = @{ @"video_id": self.videoIdentifier, @"hl": self.languageIdentifier, @"el": eventLabel, @"ps": @"default" };
NSDictionary *query = @{
@"video_id": self.videoIdentifier,
@"hl": self.languageIdentifier,
@"el": eventLabel,
@"ps": @"default",
@"html5" : @"1",
@"eurl": [@"https://youtube.googleapis.com/v/" stringByAppendingString:self.videoIdentifier],
@"c": @"TVHTML5",
@"cver": @"6.20180913"
};
NSString *queryString = XCDQueryStringWithDictionary(query);
NSURL *videoInfoURL = [NSURL URLWithString:[@"https://www.youtube.com/get_video_info?" stringByAppendingString:queryString]];
[self startRequestWithURL:videoInfoURL type:XCDYouTubeRequestTypeGetVideoInfo];
Expand Down

0 comments on commit 82df973

Please sign in to comment.