Trakt

Trakt is a service that integrates with your media center to better keep track of the TV shows and movies that you've watched.

Integrate the Trakt API with the Google Drive API

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

Add File Sharing Preference with Google Drive API on New Show Or Movie Rated from Trakt API
Trakt + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Show Or Movie Watched from Trakt API
Trakt + Google Drive
 
Try it
Add To Watchlist with Trakt API on Changes to Specific Files (Shared Drive) from Google Drive API
Google Drive + Trakt
 
Try it
Add To Watchlist with Trakt API on Changes to Specific Files from Google Drive API
Google Drive + Trakt
 
Try it
Add To Watchlist with Trakt API on New Files (Instant) from Google Drive API
Google Drive + Trakt
 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event when a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
New Show Or Movie Rated from the Trakt API

Emit new event on each new rated show or movie.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event when a change is made to one of those files

 
Try it
New Show Or Movie Watched from the Trakt API

Emit new event on each new watched show or movie.

 
Try it
New Files (Instant) from the Google Drive API

Emit new event when a new file is added in your linked Google Drive

 
Try it
Add To Watchlist with the Trakt API

Add one of more items to watchlist. See the documentation

 
Try it
Copy File with the Google Drive API

Create a copy of the specified file. See the documentation for more information

 
Try it
Remove From Watchlist with the Trakt API

Remove one of more items from watchlist. See the documentation

 
Try it
Create a New File with the Google Drive API

Create a new file from a URL or /tmp/filepath. See the docs for more information

 
Try it
Create Folder with the Google Drive API

Create a new empty folder. See the documentation for more information

 
Try it

Overview of Trakt

The Trakt API provides an interface to track and discover movies and TV shows, allowing you to manage watchlists, get personalized recommendations, and engage with a social community of film and TV enthusiasts. On Pipedream, you can harness this API to create custom workflows that automate your media activities, sync your watch status with other apps, or even analyze your viewing habits.

Connect Trakt

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    trakt: {
      type: "app",
      app: "trakt",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.trakt.$auth.environment}.trakt.tv/users/me`,
      headers: {
        Authorization: `Bearer ${this.trakt.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
        "trakt-api-version": `2`,
        "trakt-api-key": `${this.trakt.$auth.oauth_client_id}`,
      },
    })
  },
})

Overview of Google Drive

The Google Drive API on Pipedream allows you to automate various file management tasks, such as creating, reading, updating, and deleting files within your Google Drive. You can also share files, manage permissions, and monitor changes to files and folders. This opens up possibilities for creating workflows that seamlessly integrate with other apps and services, streamlining document handling, backup processes, and collaborative workflows.

Connect Google Drive

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: {
    google_drive: {
      type: "app",
      app: "google_drive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
      },
    })
  },
})