gpt4 book ai didi

iphone - 如何使用 Youtube API (GTLYoutube) 在 iPhone sdk 上搜索视频?

转载 作者:可可西里 更新时间:2023-11-01 05:41:38 25 4
gpt4 key购买 nike

我已经工作了大约 10 个小时,我 100% 完全迷失了。我试图简单地查询 youtube,比如“iPad”。然后 youtube 应该返回搜索结果列表......但我遇到了各种各样的问题。这是我的代码:

     // Create a service object for executing queries
GTLServiceYouTube *service = [[GTLServiceYouTube alloc] init];
// Services which do not require sign-in may need an API key from the
// API Console
service.APIKey = @"AIzaSyD9pvsUtnegJvwv5z5XrBO5vFTBVpErYN8";
// Create a query
GTLQueryYouTube *query = [GTLQueryYouTube queryForSearchListWithPart:@"video"];
query.q = @"hiking boots";
//query.country = @"US";
// Execute the query
GTLServiceTicket *ticket = [service executeQuery:query
completionHandler:^(GTLServiceTicket *ticket, id object, NSError *error) {
// This callback block is run when the fetch completes
if (error == nil) {
//I'VE NEVER GOTTEN TO HERE, I ALWAYS GET AN ERROR
}
}else{
NSLog(@"Error: %@", error.description);
}
}];

如果我这样做,我会收到以下错误:

    Error Domain=com.google.GTLJSONRPCErrorDomain Code=403 "The operation couldn’t be completed. (Access Not Configured)" UserInfo=0x1edab4c0 {error=Access Not Configured, GTLStructuredError=GTLErrorObject 0x1eda3f80: {message:"Access Not Configured" code:403 data:[1]}, NSLocalizedFailureReason=(Access Not Configured)}

我该怎么办??

最佳答案

“Access Not Configured”错误可能是因为您尚未在 Google API 控制台中启用 Youtube Data API。

您可以在这里访问:https://code.google.com/apis/console

点击服务并确保 Youtube 数据 API 已打开。

关于iphone - 如何使用 Youtube API (GTLYoutube) 在 iPhone sdk 上搜索视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15702336/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com