import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
invidious: {
type: "app",
app: "invidious",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.invidious.$auth.instance_url}/api/v1/auth/feed`,
headers: {
"Cookie": `SID=${this.invidious.$auth.sid}`,
},
})
},
})
Get search suggestions for a given query. See the documentation
Invidious uses API keys for authentication. When you connect your Invidious account, Pipedream securely stores the keys so you can easily authenticate to Invidious APIs in both code and no-code steps.