A free and open source read-it-later app for serious readers. Save any web article, subscribe to newsletters, read distraction free, add highlights and notes.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
omnivore: {
type: "app",
app: "omnivore",
}
},
async run({steps, $}) {
const data = {
"query": `query Viewer { me { id name } }`,
}
return await axios($, {
method: "POST",
url: `https://api-prod.omnivore.app/api/graphql`,
headers: {
"authorization": `${this.omnivore.$auth.api_key}`,
},
data,
})
},
})
Omnivore uses API keys for authentication. When you connect your Omnivore account, Pipedream securely stores the keys so you can easily authenticate to Omnivore APIs in both code and no-code steps.
Generate and copy your API Key from the API Keys Settings page.