The developer cloud
Watches for changes to specific files, emitting an event any time 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.
Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files
Emit new event any time a new file is added in your linked Google Drive
Emits a new event any time a file comment is added, modified, or deleted in your linked Google Drive
Emit new event any time any file in your linked Google Drive is added, modified, or deleted
You can use the Digital Ocean API to manage Droplets (virtual private servers),
resources within those Droplets, and other account-wide resources like domains
and images.
Examples of what you can build using the Digital Ocean API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
digital_ocean: {
type: "app",
app: "digital_ocean",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.digitalocean.com/v2/account`,
headers: {
Authorization: `Bearer ${this.digital_ocean.$auth.oauth_access_token}`,
},
})
},
})
Using the Google Drive API, you can build applications that:
Google Advanced Protection Program must be disabled in order to use the Google Drive app on Pipedream.
If you encounter the error "Google cannot give this app access to your account data because Advanced Protection is turned on for your Google Account", you will need to disable this setting as it blocks third-party apps from accessing Google Drive.
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}`,
},
})
},
})