YouTube (Data API) - Custom App

Connect to the YouTube Data API with a custom OAuth client

Integrate the YouTube (Data API) - Custom App API with the Slack API

Setup the YouTube (Data API) - Custom App API trigger to run a workflow which integrates with the Slack API. Pipedream's integration platform allows you to integrate YouTube (Data API) - Custom App and Slack remarkably fast. Free for developers.

Add Playlist Items with YouTube (Data API) - Custom App API on New Message In Channels (Instant) from Slack API
Slack + YouTube (Data API) - Custom App
 
Try it
Channel Statistics with YouTube (Data API) - Custom App API on New Message In Channels (Instant) from Slack API
Slack + YouTube (Data API) - Custom App
 
Try it
Create Comment Thread with YouTube (Data API) - Custom App API on New Message In Channels (Instant) from Slack API
Slack + YouTube (Data API) - Custom App
 
Try it
Create Playlist with YouTube (Data API) - Custom App API on New Message In Channels (Instant) from Slack API
Slack + YouTube (Data API) - Custom App
 
Try it
Delete Playlist Items with YouTube (Data API) - Custom App API on New Message In Channels (Instant) from Slack API
Slack + YouTube (Data API) - Custom App
 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New Comment Posted from the YouTube (Data API) - Custom App API

Emit new event for each new comment or reply posted to a Youtube video.

 
Try it
New Liked Videos from the YouTube (Data API) - Custom App API

Emit new event for each new Youtube video liked by the authenticated user

 
Try it
New Subscriber from the YouTube (Data API) - Custom App API

Emit new event for each new Youtube subscriber to user Channel.

 
Try it
New Subscription from the YouTube (Data API) - Custom App API

Emit new event for each new subscription from authenticated user.

 
Try it
Add Playlist Items with the YouTube (Data API) - Custom App API

Adds resources to a playlist. See the docs for more information

 
Try it
Channel Statistics with the YouTube (Data API) - Custom App API

Returns statistics from my YouTube Channel or by id. See the docs for more information

 
Try it
Send Message to a Public Channel with the Slack API

Send a message to a public channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it
Create Comment Thread with the YouTube (Data API) - Custom App API

Creates a new top-level comment in a video. See the docs for more information

 
Try it
Send Message to a Private Channel with the Slack API

Send a message to a private channel and customize the name and avatar of the bot that posts the message. See postMessage or scheduleMessage docs here

 
Try it

Overview of YouTube (Data API) - Custom App

What can I build using YouTube's Data API?

The YouTube Data API (also known as the YouTube Custom App API) is a powerful tool that enables developers to build applications that interact with YouTube's platform. With it, developers can create apps that display data about the videos and channels on YouTube, fetch metadata about specific videos, modify existing videos, and much more.

Some of the many possibilities enabled by the YouTube Data API include:

  • Building applications that search for relevant videos and channels within YouTube
  • Displaying detailed information about specific videos and channels
  • Modifying existing videos
  • Uploading videos to YouTube
  • Constructing an application that categorizes videos and channels by topics
  • Constructing an application that shows video comments
  • Creating an object detection detection application that can detect objects present in a video
  • Fetching metadata about videos and channels

Connect YouTube (Data API) - Custom App

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    youtube_data_api_custom_app: {
      type: "app",
      app: "youtube_data_api_custom_app",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.youtube_data_api_custom_app.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Slack

The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. When you authorize the Pipedream app's access to your workspace, you can use Pipedream workflows to perform common Slack actions, or write your own code against the Slack API.

The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.

  • Automate posting updates to your team channels
  • Create a bot to answer common questions
  • Integrate with your existing tools and services
  • And much more!

Connect Slack

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    slack: {
      type: "app",
      app: "slack",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
      },
    })
  },
})
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack
Save Zoom Cloud Recordings to Google Drive and Share on Slack.
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.

Community Posts

Airtable Webhooks with Slack + Pipedream
Airtable Webhooks with Slack + Pipedream
We love Airtable here at Pipedream. But Airtable lacks one killer feature — webhooks. We took advantage of Airtable’s Slack notifications and built a way to send webhooks to an HTTP endpoint every time a record is created or updated in a base. It takes 10 minutes to setup and it’s free.