SmugMug

Online photo application

Integrate the SmugMug API with the MySQL API

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

Create Album with SmugMug API on New Column from MySQL API
MySQL + SmugMug
 
Try it
Create Album with SmugMug API on New or Updated Row from MySQL API
MySQL + SmugMug
 
Try it
Create Album with SmugMug API on New Row (Custom Query) from MySQL API
MySQL + SmugMug
 
Try it
Create Album with SmugMug API on New Row from MySQL API
MySQL + SmugMug
 
Try it
Create Album with SmugMug API on New Table from MySQL API
MySQL + SmugMug
 
Try it
New Column from the MySQL API

Emit new event when you add a new column to a table. See the docs here

 
Try it
New or Updated Row from the MySQL API

Emit new event when you add or modify a new row in a table. See the docs here

 
Try it
New Row from the MySQL API

Emit new event when you add a new row to a table. See the docs here

 
Try it
New Row (Custom Query) from the MySQL API

Emit new event when new rows are returned from a custom query. See the docs here

 
Try it
New Table from the MySQL API

Emit new event when a new table is added to a database. See the docs here

 
Try it
Create Album with the SmugMug API

Creates an album. See the docs here

 
Try it
Create Row with the MySQL API

Adds a new row. See the docs here

 
Try it
Get Album with the SmugMug API

Gets an album given its id. See the docs here

 
Try it
Delete Row with the MySQL API

Delete an existing row. 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

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 MySQL

MySQL is a powerful database management system used by some of the largest
organizations in the world, including Facebook, Google, and Amazon. MySQL is an
open-source relational database management system (RDBMS), as well as a popular
choice for web applications used by millions of websites.

Some applications that can be built using the MySQL API include:

  • A web application that stores and retrieves data from a MySQL database
  • A desktop application that uses a MySQL database for data storage
  • A mobile application that interacts with a MySQL database

Connect MySQL

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import mysql from 'mysql2/promise';

export default defineComponent({
  props: {
    mysql: {
      type: "app",
      app: "mysql",
    }
  },
  async run({steps, $}) {
    const {
      host,
      port,
      username: user,
      password,
      database,
      ca,
      key,
      cert,
      reject_unauthorized: rejectUnauthorized,
    } = this.mysql.$auth;

    const isRejectUnauthorizedUndefined = rejectUnauthorized === undefined;
    const isSslSet = !!(ca && key && cert);

    const connectionConfig = {
      host,
      port,
      user,
      password,
      database,
      ...(isSslSet && {
        ssl: {
          rejectUnauthorized: true,
          ca,
          cert,
          key,
        },
      }),
      ...(!isSslSet && !isRejectUnauthorizedUndefined && {
        ssl: {
          rejectUnauthorized,
        },
      }),
    };

    const connection = await mysql.createConnection(connectionConfig);
    
    const [rows] = await connection.execute('SELECT NOW()');
    return rows;
  },
});