ios - 将 youtube v3 与 apikey 一起使用
<p><p>我正在尝试使用 YouTube v3 API 使用 APIKey 而不是 oAuth2 执行搜索。</p>
<p>我的问题是,当我使用 APIKey 时,查询总是返回错误。</p>
<p>这是初始化服务的代码</p>
<pre><code>_service = [ init];
;
;
</code></pre>
<p>这是查询的代码</p>
<pre><code>GTLQueryYouTube *query = ;
query.q = filter;
query.type = type;
query.maxResults = maxResults;
[_service executeQuery:query completionHandler:
^(GTLServiceTicket *ticket, GTLYouTubeSearchListResponse *searchListResponse, NSError *error)
{
//-- do stuff
}];
</code></pre>
<p>使用 APIKey 时返回的错误如下。如果我使用 oAuth,一切都会按预期进行。</p>
<pre><code>error: Error Domain=com.google.GTLJSONRPCErrorDomain Code=403 "The operation couldn’t be completed. (Access Not Configured)" UserInfo=0x13d10ac0 {error=Access Not Configured, GTLStructuredError=GTLErrorObject 0x13d0c770: {message:"Access Not Configured" code:403 data:}, NSLocalizedFailureReason=(Access Not Configured)}
</code></pre>
<p>我已在 Google API 控制台上创建了 APIKey,并且服务已启用。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>不是理想的解决方案...但我在这篇文章中找到了解决方法:
<a href="https://stackoverflow.com/questions/15440285/google-youtube-api-v3-ios-app-key-403-error-code" rel="noreferrer noopener nofollow">google-youtube-api-v3-ios-app-key-403-error-code</a> </p>
<p>基本上,如果我们使用“浏览器应用程序 key ”而不是“iOS 应用程序 key ”,它将起作用。</p></p>
<p style="font-size: 20px;">关于ios - 将 youtube v3 与 apikey 一起使用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/15422722/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/15422722/
</a>
</p>
页:
[1]