Where programmers share ideas and help each other grow.
Emit new event for each new story that has a matching tag (e.g., javascript)
Emit new event for each new article published on your Dev.to account
Emit new event for each new reading list item on your Dev.to account
With the Dev.to API, you can build applications that:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dev_to: {
type: "app",
app: "dev_to",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://dev.to/api/articles/me`,
headers: {
"api-key": `${this.dev_to.$auth.api_key}`,
},
})
},
})
With Discord's Webhook API, you can create applications that send messages to
Discord channels automatically. For example, you could create a bot that sends
a message to a channel every time a new blog post is published, or a message to
a channel when someone joins your Discord server.
Here are some ideas for what you could build using the Discord Webhook API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord_webhook: {
type: "app",
app: "discord_webhook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord_webhook.$auth.oauth_access_token}`,
},
})
},
})