Real Simple Syndication
Emit new event for every updated entity of a certain type. See the docs here
Emit new event for every created entity of a certain type. See the docs here
Retrieve multiple RSS feeds and return a merged array of items sorted by date See documentation
Creates a new entity or updates if it exists. See the docs here
Get an entity or create one if it doesn't exist. See the docs here
The RSS app allows users to automatically fetch and parse updates from web feeds. This functionality is pivotal for staying abreast of content changes or updates from websites, blogs, and news outlets that offer RSS feeds. With Pipedream, you can harness the RSS API to trigger workflows that enable a broad range of automations, like content aggregation, monitoring for specific keywords, notifications, and data synchronization across platforms.
module.exports = defineComponent({
props: {
rss: {
type: "app",
app: "rss",
}
},
async run({steps, $}) {
// Retrieve items from a sample feed
const Parser = require('rss-parser');
const parser = new Parser();
const stories = []
// Replace with your feed URL
const url = "https://pipedream.com/community/latest.rss"
const feed = await parser.parseURL(url);
const { title, items } = feed
this.title = title
if (!items.length) {
$end("No new stories")
}
this.items = items
},
})
Fibery is a versatile work management platform, and its API amplifies this versatility within Pipedream's environment. Leveraging the Fibery API on Pipedream, you can automate complex workflows that span across project management, product development, and collaborative functions. This includes actions like syncing issues across platforms, aggregating feedback into product roadmaps, or updating project timelines based on external triggers. With Pipedream, you can listen for webhooks, schedule tasks, and seamlessly connect Fibery with other apps to create a dynamic, interconnected workspace.
module.exports = defineComponent({
props: {
fibery: {
type: "app",
app: "fibery",
}
},
async run({steps, $}) {
return (await require("@pipedream/platform").axios($, {
method: "post",
url: `https://${this.fibery.$auth.account_name}.fibery.io/api/commands`,
headers: {
"Authorization": `Token ${this.fibery.$auth.api_key}`,
"Content-Type": `application/json`,
},
data: [
{
"command": "fibery.entity/query",
"args": {
"query": {
"q/from": "fibery/user",
"q/select": ["fibery/id", "user/name"],
"q/limit": 1
}
}
}
],
}))[0]
},
})