1

我正在尝试使用 YouTube iOS SDK 请求 playListItems。

我返回一个错误...

Error Domain=com.google.GTLJSONRPCErrorDomain
Code=-32602 "The operation couldn’t be completed. (No filter selected.)" 
UserInfo=0x1568f1e0
{
    error=No filter selected.,
    GTLStructuredError=GTLErrorObject 0x1567fdf0: {message:"No filter selected." code:-32602 data:[1]},
    NSLocalizedFailureReason=(No filter selected.)
}

我正在使用的查询是这个......

GTLServiceYouTube *service = [[GTLServiceYouTube alloc] init];

service.APIKey = @"my key";

// I suspect the problem is here...
GTLQueryYouTube *query = [GTLQueryYouTube queryForPlaylistItemsListWithPart:@"contentDetails"];
query.q = @"playlistId=<The playlist ID>";

GTLServiceTicket *ticket = [service executeQuery:query
                               completionHandler:^(GTLServiceTicket *ticket, id object, NSError *error) {
                                   if (!error) {
                                       GTLYouTubePlaylistItemListResponse *playlistItems = object;

                                       for (GTLYouTubePlaylistItem *playlistItem in playlistItems) {
                                           GTLYouTubePlaylistItemContentDetails *details = playlistItem.contentDetails;

                                           NSLog(@"PlaylistItem video ID = %@", details.videoId);
                                       }
                                   } else {
                                       NSLog(@"%@", error);
                                   }
                               }];

问题是整个 API 的文档是无用的,所以没有使用这个的例子。我必须将 Google Shopping apis 和其他东西的示例放在一起。

大部分猜测工作都来自这里

有什么想法我应该把它放在query.q价值中吗?或者,如果我还缺少其他东西?

4

1 回答 1

1

好的,我终于找到了一个链接,其中包含一些链接。

使用的代码是...

query.playlistId = @"the playlist ID";

然后一切正常:D

于 2013-08-06T23:34:30.820 回答