Skip to main content
Skip table of contents

YouTube Integration

Setting Up a YouTube Project in the Google Developers Console

1. Create a New Project

  • Go to the Google Developers Console.

  • Create a new project by selecting "New Project" in the project drop-down.

2. Enable the YouTube Data API v3

  • In your project, navigate to APIs & Services > Library.

  • Search for YouTube Data API v3 and enable it.


Obtaining API Credentials

1. Create Credentials

  • Go to the Credentials section within your project.

  • Click on Create Credentials and choose the appropriate type based on your application’s needs:

    • API Key: For accessing public YouTube data, such as general video and channel information.

    • OAuth 2.0 Client ID: Required for accessing user-specific data or performing actions on behalf of a user, such as managing videos or playlists.

2. Secure Your Credentials

  • Store your API Key or OAuth 2.0 credentials securely, avoiding exposure in client-side code to prevent unauthorized access.


Using Webhooks with YouTube (PubSubHubbub / WebSub)

YouTube supports webhooks through the YouTube Data API v3, using the PubSubHubbub protocol (also known as WebSub). This allows your application to receive real-time notifications about certain events, such as:

  • New video uploads

  • Updates to video titles

  • Changes in video descriptions

How It Works

  • Subscription: Your application subscribes to a YouTube channel’s feed by sending a subscription request to the PubSubHubbub hub, specifying:

    • Callback URL: Your server URL where notifications will be received.

    • Topic URL: The URL of the specific channel’s feed.

  • Verification: The hub verifies the subscription by sending a request to your callback URL. Your server must respond appropriately to confirm the subscription.

  • Notification: When the channel performs an action (e.g., a new video upload), the hub sends an HTTP POST request to your callback URL with details about the event.

Cost and Limits

  • Webhook Notifications: Using YouTube’s webhook functionality via the PubSubHubbub protocol is free.

  • Quota: Webhook notifications operate independently of the YouTube Data API’s general quota system.


Understanding the YouTube Data API v3 Quota System

The YouTube Data API v3 offers various functionalities, such as video uploads, fetching channel statistics, managing playlists, etc. Each operation within the API has an associated quota cost in units.

1. Daily Quota

  • Default Limit: Each project has a default daily quota of 10,000 units.

2. Quota Costs per Operation

  • Search Query: 100 units per request.

  • Video Upload: 1,600 units per request.

  • Fetching Video Details: 1 unit per request.

3. Cost Considerations

  • Increased Quota: You can request an increased quota if needed, though approval depends on your application’s compliance with Google’s policies.

  • No Charge for Increased Quota: YouTube does not charge for increased quotas, but approval is not guaranteed.


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.