YouTube (Analytics API) - Custom App

Connect to the YouTube Analytics API with a custom OAuth client

Integrate the YouTube (Analytics API) - Custom App API with the Formatting API

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

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of YouTube (Analytics API) - Custom App

The YouTube (Analytics API) - Custom App on Pipedream enables content creators, marketers, and developers to deeply understand the performance of their YouTube channels and videos through automated data retrieval. By tapping into metrics like view counts, likes, comments, and watch time, users can craft strategies to optimize their content and increase engagement. With Pipedream's serverless platform, these insights can trigger workflows, inform content creators in real-time, and integrate smoothly with other apps for a seamless data processing experience.

Connect YouTube (Analytics 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_analytics_api_custom_app: {
      type: "app",
      app: "youtube_analytics_api_custom_app",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.youtube_analytics_api_custom_app.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})