iOS YouTube api v3:上传的视频 url

iOS YouTube api v3: uploaded video url

我想获取 YouTube 上传视频的 URL。可以使用 (GDataEntryYouTubeVideo *)videoEntry;api-v2 中获取 YouTube 上传的视频 URL。 谁能告诉我如何在 api-v3

中做同样的事情

按照这个sample中的方法:

- (void)uploadPrivateVideoWithTitle:(NSString *)title description:(NSString *)description commaSeperatedTags:(NSString *)tags andPath:(NSString *)path

没有直接的方法url,下面就是答案!

self.uploadFileTicket = [service executeQuery:query completionHandler:^(GTLServiceTicket *ticket,GTLYouTubeVideo *uploadedVideo,NSError *error) {
                   NSString *videoURL = [NSString stringWithFormat:@"%@%@", @"http://www.youtube.com/watch?v=", uploadedVideo.identifier];
}