Make stuff, look at stuff, talk about stuff, find your people.
Find issues and pull requests by state and keyword. See the documentation
Allows you to add a new gist with one or more files. See the documentation
The Tumblr API on Pipedream allows you to automate interactions with your Tumblr account, like posting content, managing posts, and interacting with followers. By leveraging this API, you can craft workflows that streamline your social media strategies, analyze engagement, and connect your Tumblr activities with other tools and platforms. Whether you're looking to auto-post content across different networks, analyze post metrics, or curate content based on specific criteria, the Tumblr API paired with Pipedream’s serverless execution model paves the way for powerful automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tumblr: {
type: "app",
app: "tumblr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tumblr.com/v2/blog/good.tumblr.com/info`,
params: {
api_key: `${this.tumblr.$auth.api_key}`,
},
})
},
})
The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.
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`,
},
})
},
})