SmugMug

Online photo application

Integrate the SmugMug API with the Dropbox API

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

Get Album with SmugMug API on New File from Dropbox API
Dropbox + SmugMug
 
Try it
Create Album with SmugMug API on New File from Dropbox API
Dropbox + SmugMug
 
Try it
Get Authenticated User with SmugMug API on New File from Dropbox API
Dropbox + SmugMug
 
Try it
Get Image with SmugMug API on New File from Dropbox API
Dropbox + SmugMug
 
Try it
Get User Profile with SmugMug API on New File from Dropbox API
Dropbox + SmugMug
 
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
Create Album with the SmugMug API

Creates an album. See the docs here

 
Try it
Get Album with the SmugMug API

Gets an album given its id. See the docs here

 
Try it
Get Authenticated User with the SmugMug API

Gets details of the authenticated user. 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 Image with the SmugMug API

Gets an image. An image is a photo or video stored on SmugMug. See the docs here

 
Try it

Overview of SmugMug

The SmugMug API makes it possible to access and build upon the powerful SmugMug
platform in creative and custom ways. With the SmugMug API, you can build
applications that interact with users' photos, galleries and albums on the
SmugMug platform. Whether you wish to create a custom photo store, custom photo
workflow, or customize the way people interact with your SmugMug galleries, the
SmugMug API makes it all possible. Here are some examples of what you can
create with the SmugMug API:

  • Create a custom photo store to display, sell, and deliver photos to
    customers.
  • Integrate photo albums into blogs and websites.
  • Upload photos to SmugMug from your own apps.
  • Automate photo workflow and editing tasks.
  • Access image meta data and create custom photo searches.
  • Retrieve and impose photo upload restrictions.
  • Connect SmugMug galleries to custom themes.
  • Automatically resize, crop, and watermark photos.
  • Create your own custom photo galleries.
  • Allow customers to download photos with custom watermarks.
  • Build applications to allow mass uploads and downloads.
  • Monitor and track photo download activity.

Connect SmugMug

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: {
    smugmug: {
      type: "app",
      app: "smugmug",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.smugmug.com/api/v2!authuser`,
      headers: {
        "Accept": `application/json`,
      },
    }, {
      token: {
        key: this.smugmug.$auth.oauth_access_token,
        secret: this.smugmug.$auth.oauth_refresh_token,
      },
      oauthSignerUri: this.smugmug.$auth.oauth_signer_uri,
    })
  },
})

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.