Personal cloud storage
Emit new event when a new file is added to a specific drive in OneDrive
Emit an event when a new file is added to a specific directory tree in a OneDrive drive
Emit an event when a new file of a specific type is created under a directory tree in a OneDrive drive
Emit new event when a new folder is created in a OneDrive drive
Emit an event when a new folder is created under a directory tree in a OneDrive drive
Download a file stored in OneDrive. See the documentation
Retrieve a table from an Excel spreadsheet stored in OneDrive See the documentation
Find issues and pull requests by state and keyword. See docs here
Microsoft OneDrive API allows developers to access the OneDrive service, which
enables users to store and share their personal data, such as files, photos,
and OneNote notebooks, across all their devices.
With the Microsoft OneDrive API, developers can build a variety of applications
and services that take advantage of the following features:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_onedrive: {
type: "app",
app: "microsoft_onedrive",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_onedrive.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})