Dropbox

Dropbox gives you secure access to all your files. Collaborate with friends, family, and coworkers from any device.

Integrate the Dropbox API with the Spotify API

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

Add Items to a Playlist with Spotify API on New File from Dropbox API
Dropbox + Spotify
 
Try it
Create a Playlist with Spotify API on New File from Dropbox API
Dropbox + Spotify
 
Try it
Get a Category's Playlists with Spotify API on New File from Dropbox API
Dropbox + Spotify
 
Try it
Get a Playlist with Spotify API on New File from Dropbox API
Dropbox + Spotify
 
Try it
Get a Playlist's Items with Spotify API on New File from Dropbox API
Dropbox + Spotify
 
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 or Modified File or Folder from the Dropbox API

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

 
Try it
New Playlist from the Spotify API

Emit new event when a new playlist is created or followed by the current Spotify user.

 
Try it
New Saved Track from the Spotify API

Emit new event for each new track saved to the current Spotify user's Music Library.

 
Try it
Add Items to a Playlist with the Spotify API

Add one or more items to a user’s playlist. See the docs here.

 
Try it
Create a Playlist with the Spotify API

Create a playlist for a Spotify user. The playlist will be empty until you add tracks. See the docs here.

 
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
Get a Category's Playlists with the Spotify API

Get a list of Spotify playlists tagged with a particular category. See the docs here.

 
Try it
Create folder with the Dropbox API

Create a folder. See docs here

 
Try it

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,
    })
  },
})

Overview of Spotify

Assuming you have a Spotify Developer account (https://developer.spotify.com/), you can use the Spotify API to build the following:

  • An app that displays a user's top artists, tracks, and genres
  • A playlist generator that creates a playlist based on a user's favorite artists
  • An app that shows a user's friends who also listen to a particular artist
  • A concert finder that shows a user upcoming concerts for their favorite artists

Connect Spotify

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    spotify: {
      type: "app",
      app: "spotify",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.spotify.com/v1/me`,
      headers: {
        Authorization: `Bearer ${this.spotify.$auth.oauth_access_token}`,
      },
    })
  },
})

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.