0xced / XCDYouTubeKit

YouTube video player for iOS, tvOS and macOS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XCDYouTubeRequestTypeGetVideoInfo is resulting in a 404 response

jdhamilton99 opened this issue · comments

commented

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];