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}`,
},
})
},
})
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
Dev.to uses API keys for authentication. When you connect your Dev.to account, Pipedream securely stores the keys so you can easily authenticate to Dev.to APIs in both code and no-code steps.
Generate an API key at https://dev.to/settings/account