0

我想创建一个网站,允许用户输入 YouTube URL,然后生成视频或频道的统计信息。

我研究了 YouTube Analytics API,但是在遵循https://developers.google.com/youtube/analytics/v1/sample-application之后遇到了错误。我收到“超出未经验证使用的每日限制。继续使用需要注册。” 错误。

我所追求的是一种获取 HTTP url 请求的简单方法,它将为我提供基本分析(公开的详细信息,例如喜欢、视图等)所以我可以在输入的 YouTube URL 上执行这个 GET 请求.

任何帮助将不胜感激。

4

1 回答 1

0

听起来您需要按照说明注册您的应用

来自https://developers.google.com/youtube/v3/

Register your application with Google so that it can submit API requests.

此页面有详细信息

https://developers.google.com/youtube/registering_an_application

获取授权凭证

您的应用程序必须具有授权凭据才能使用 YouTube 数据 API。本文档介绍了 Google Developers Console 支持的不同类型的授权凭据。它还解释了如何为您的项目查找或创建授权凭证。

创建您的项目并选择 API 服务

Go to the Google Developers Console.
Select a project.
In the sidebar on the left, select APIs & auth. In the list of APIs, make sure the status is ON for the YouTube Data API v3.
In the sidebar on the left, select Credentials.
The API supports two types of credentials. Create whichever credentials are appropriate for your project:
OAuth 2.0: Your application must send an OAuth 2.0 token with any request that accesses private user data. Your application sends a

客户端 ID,可能还有用于获取令牌的客户端密码。您可以为 Web 应用程序、服务帐户或已安装的应用程序生成 OAuth 2.0 凭据。

Learn more
API keys: A request that does not provide an OAuth 2.0 token must send an API key. The key identifies your project and provides API

访问、配额和报告。

If the key type you need does not already exist, create an API key by selecting Create New Key and then selecting the appropriate key

类型。然后输入该密钥类型所需的附加数据。

于 2015-04-29T09:34:54.080 回答