Social news website
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
Add a sharing permission to the sharing preferences of a file or folder and provide a sharing URL. See the docs for more information
Create a copy of the specified file. See the docs for more information
Create a new file from a URL or /tmp/filepath. See the docs for more information
Create a new Google Docs file from a template. Optionally include placeholders in the template document that will get replaced from this action. See documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hacker_news: {
type: "app",
app: "hacker_news",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://hn.algolia.com/api/v1/search_by_date?query=pipedream`,
})
},
})
Using the Google Drive API, you can build applications that:
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}`,
},
})
},
})