RSS

Real Simple Syndication

Integrate the RSS API with the Dropbox API

Setup the RSS API trigger to run a workflow which integrates with the Dropbox API. Pipedream's integration platform allows you to integrate RSS and Dropbox remarkably fast. Free for developers.

Create a Text File with Dropbox API on New Item in Feed from RSS API
RSS + Dropbox
 
Try it
Create folder with Dropbox API on New Item in Feed from RSS API
RSS + Dropbox
 
Try it
Create or Append to a Text File with Dropbox API on New Item in Feed from RSS API
RSS + Dropbox
 
Try it
Create/Update a Share Link with Dropbox API on New Item in Feed from RSS API
RSS + Dropbox
 
Try it
Delete a File/Folder with Dropbox API on New Item in Feed from RSS API
RSS + Dropbox
 
Try it
New Item in Feed from the RSS API

Emit new items from an RSS feed

 
Try it
New File from the Dropbox API

Emit new event when a new file is added to your account or a specific folder. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
New Folder from the Dropbox API

Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
New Item From Multiple RSS Feeds from the RSS API

Emit new items from multiple RSS feeds

 
Try it
Random item from multiple RSS feeds from the RSS API

Emit a random item from multiple RSS feeds

 
Try it
Merge RSS Feeds with the RSS API

Retrieve multiple RSS feeds and return a merged array of items sorted by date See documentation

 
Try it
Create a Text File with the Dropbox API

Creates a brand new text file from plain text content you specify. See docs here

 
Try it
Create folder with the Dropbox API

Create a folder. See docs here

 
Try it
Create or Append to a Text File with the Dropbox API

Adds a new line to an existing text file, or creates a file if it doesn't exist. See docs here

 
Try it
Create/Update a Share Link with the Dropbox API

Creates or updates a public share link to the file or folder (It allows to share the file or folder with anyone). See docs here

 
Try it

Overview of RSS

With the RSS API you have the power to create powerful tools and applications.
RSS is a great way to reliably subscribe to, track and build around your
favorite content sources. Here are some examples of things you can create
using the RSS API:

  • A personal news website to syndicate articles from multiple sources.
  • A custom feed reader to deliver timely notifications of updates and news.
  • A live editorial dashboard to track news, trends and public sentiment.
  • An automated “report bot” to aggregate and report on news topics.
  • A competitor tracking tool to stay on top of industry news.
  • A custom RSS-based search engine or RSS-supported deep learning engine.
  • A live events feed to notify users and followers of new developments.

Connect RSS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
  },
})

Overview of Dropbox

With the Dropbox API, you can build a variety of applications that range from
simple file sharing to complex content management systems. Some examples of
what you can build using the Dropbox API include:

  • A file sharing application that allows users to share and sync files across
    devices
  • A content management system that allows users to manage and share files and
    folders
  • A note taking application that allows users to sync notes across devices
  • A task management application that allows users to manage and share tasks and
    files
  • A document management application that allows users to manage and share
    documents and files

Connect Dropbox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dropbox: {
      type: "app",
      app: "dropbox",
    }
  },
  async run({steps, $}) {
    const data = {
      "account_id": `${this.dropbox.$auth.oauth_uid}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.dropboxapi.com/2/users/get_account`,
      headers: {
        Authorization: `Bearer ${this.dropbox.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Community Posts

Integrating Location Data into Pipedream Workflows
Integrating Location Data into Pipedream Workflows
Over the past few months, I've become somewhat enamored with a new service called Pipedream. Pipedream is yet another serverless solution with a bit of a twist. It makes it easy to build workflows by piecing together various actions like LEGO bricks. These actions are small pieces of programming logic that cover a wide variety of different services. You can connect these actions together along with the ability to write Node code for your own logic.