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
Adds or updates a barcode value in the selected database. See the documentation
The Dev.to API enables programmatic interaction with Dev.to, a community for software developers to share articles and engage with content. Through the API, you can automate content creation, management, and analysis. Accessing user articles, managing comments, and triggering actions based on Dev.to events are just a few capabilities at your disposal. By leveraging these with Pipedream's serverless platform, you can craft powerful automations that respond in real-time to activities on Dev.to, streamlining your content strategy and community engagement.
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}`,
},
})
},
})
The CodeREADr API allows you to integrate barcode scanning and data collection into your workflows on Pipedream. With this API, you can automate barcode validation, track event attendance, manage inventory, and more by creating, updating, and retrieving scan records. Pipedream's serverless platform enables you to connect CodeREADr with other apps, triggering actions based on scan data, or enriching CodeREADr data with information from other sources.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
codereadr: {
type: "app",
app: "codereadr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.codereadr.com/api/`,
params: {
section: `users`,
action: `retrieve`,
api_key: `${this.codereadr.$auth.api_key}`,
},
})
},
})