iOS,GTLFramework - 如何使用 pageTokens 从一个频道获取所有视频

iOS, GTLFramework - how to fetch all videos from a channel using pageTokens

这是我从特定频道检索 YouTube 视频列表的代码:

GTLServiceYouTube *service;
self.vidInfos = [[NSMutableArray alloc] init];
service = [[GTLServiceYouTube alloc] init];
service.APIKey = @"my-api-key";

GTLQueryYouTube *query1 = [GTLQueryYouTube queryForPlaylistItemsListWithPart:@"id,snippet"];
query1.playlistId = @"the-playlist-id-from-utube-channel";
query1.maxResults = 50;

[service executeQuery:query1 completionHandler:^(GTLServiceTicket *ticket, id object, NSError *error) {
    if (!error) {
        GTLYouTubePlaylistItemListResponse *playlistItems = object;
        for (GTLYouTubePlaylistItem *playlistItem in playlistItems) {
            [self.vidInfos addObject:playlistItem];
        }
        [self.tableView reloadData];
    }else {
        NSLog(@"%@", error);
    }
}];

并且,在 cellForRowAtIndexPath 方法中:

GTLYouTubePlaylistItem *itemToDisplay = [self.vidInfos objectAtIndex:indexPath.row];
cell.textLabel.text = itemToDisplay.snippet.title;

查询最多接受 50 个结果限制。但我需要显示整个列表,大约有 250 个视频。

我该怎么做?我阅读了有关使用 pageTokens 的信息,但我找不到任何有关如何使用 pageTokens 的示例或代码、从哪里获取它们以及将它们传递到哪里?

A GTLYouTubeListResponse,你在进行查询后收到,有一个 NSString 属性 被称为 nextPageToken.
这个属性表示'next page'的'address',如果你有几个'pages'的搜索结果,
(意思是,搜索结果的数量高于您在 maxResults 属性 中设置的数量,正如您所说,搜索结果限制为 50 个)

因此,以您的问题为例,总共有 250 个结果,您有 5 个搜索结果 'pages',每个 'page' 有 50 个搜索结果。

GTLYouTubeQuery有一个对应的pageToken属性,其中'tells'查询什么'page'你想收到的结果。

可能是实现该目标的另一种方法,但这只是我的想法
我认为这是实现这一目标的非常简单直接的方法,
无论如何,下面的示例使用您的代码来演示如何使用此 属性。

重要提示!!!
在下面的代码中,我是 'looping' 通过 ALL 的搜索结果,
这仅用于说明目的,
在您的应用中,您可能还想创建自己的自定义限制,
因此,如果用户搜索具有大量结果的通用关键字,您将不会尝试获取所有结果,除其他缺点外,可能会比他阅读的更多,造成不必要的网络和内存使用,并且会 'hog' 你的 google 开发者点数(或者它叫什么,当它 'costs' 你进行 google API 调用时)

所以,如果我们使用您的原始代码-

// First, make GTLServiceYouTube a property, so you could access it thru out your code  
@interface YourViewControllerName ()  
@property (nonatomic, strong) GTLServiceYouTube *service;  
@end  

// don't forget to still initialise it in your viewDidLoad
self.vidInfos = [[NSMutableArray alloc] init];
service = [[GTLServiceYouTube alloc] init];
service.APIKey = @"my-api-key";

GTLQueryYouTube *query1 = [GTLQueryYouTube queryForPlaylistItemsListWithPart:@"id,snippet"];
query1.playlistId = @"the-playlist-id-from-utube-channel";
query1.maxResults = 50;

// After you've created the query, we will pass it as a parameter to our method  
// that we will create below
[self makeYoutubeSearchWithQuery:query1];

// Here we create a new method that will actually make the query itself,  
// We do that, so it'll be simple to call a new search query, from within  
// our query's completion block
-(void)makeYoutubeSearchWithQuery:(GTLQueryYouTube *)query {  
    [service executeQuery:query completionHandler:^(GTLServiceTicket *ticket, id object, NSError *error) {
        if (!error) {
            GTLYouTubePlaylistItemListResponse *playlistItems = object;
            for (GTLYouTubePlaylistItem *playlistItem in playlistItems) {
                [self.vidInfos addObject:playlistItem];
            }
            [self.tableView reloadData];
        }else {
            NSLog(@"%@", error);
        }  

        // Here we will check if our response, has a value in the nextPageToken  
        // property, meaning there are more search results 'pages'.  
        // If it is not nil, we will just set our query's pageToken property  
        // to be our response's nextPageToken, and will call this method  
        // again, but this time pass the 'modified' query, so we'll make a new  
        // search, with the same parameters as before, but that will ask the 'next'  
        // page of results for our search  
        // It is advised to add some sort of your own limit to the below if statement,  
        // such as '&& [self.vidInfos count] < 250'
        if(playlistItems.nextPageToken) {  
            query.pageToken = playlistItems.nextPageToken;  
            [self makeYoutubeSearchWithQuery:query];
        } else {  
            NSLog(@"No more pages");
        }
    }];  
}  

祝你好运。