Connect to the YouTube Analytics API with a custom OAuth client
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Find issues and pull requests by state and keyword. See docs here
Create or update a file in a repository. This will replace an existing file. See docs here
The YouTube Analytics API is an incredibly powerful tool for developers and
businesses. This API allows developers to access rich statistics about their
YouTube channel and videos, allowing them to create custom applications and
tools to better understand their viewers, customers, and markets. With the
YouTube Analytics API, you can build:
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})