Internet-related services and products
Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
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.
Get a URL and emit the HTTP body as an event on every request
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 when the content of the URL changes.
Add a sharing permission to the sharing preferences of a file and provide a sharing URL. See the docs for more information
Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Create a copy of the specified file. See the docs for more information
Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.
Create a new file from a URL or /tmp/filepath. See the docs for more information
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}`,
},
})
},
})
// To use any npm package on Pipedream, just import it
import axios from "axios"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})