这是我从特定频道检索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
、从哪里获得它们以及在哪里传递它们的示例或代码?
进行查询后收到的GTLYouTubeListResponse
具有称为 nextPageToken
的NSString
属性。此属性指示"下一页"的"地址",以防您有多个"页面"的搜索结果,
(这意味着,搜索结果的数量高于您在 maxResults
属性中设置的数量,正如您所说,该属性有 50 个结果的限制)
因此,以您的问题为例,总共有 250 个结果,您有 5 个搜索结果"页面",每个"页面"上有 50 个搜索结果。
GTLYouTubeQuery
有一个相应的pageToken
属性,该属性"告诉"查询您希望接收结果的哪个"页面"。
可能是实现这一目标的另一种方法,但这只是我的头
顶我认为这是实现这一目标的非常简单明了的方法,
无论如何,下面的示例使用您的代码来演示如何使用此属性。
重要说明!!
在下面的代码中,我正在"循环"所有搜索结果,
这只是为了说明目的,
在您的应用中,您可能还希望创建自己的自定义限制,
因此,如果用户搜索一个具有大量结果的通用关键字,您不会尝试获取所有结果,除其他缺点外,这些关键字可能会比他阅读的更多,进行不必要的网络和内存使用,并且会"占用"您的谷歌开发人员积分(或任何名称,当它"花费"您进行谷歌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");
}
}];
}
祝你好运,伙计。