With the Instapaper API, you can build applications that:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instapaper: {
type: "app",
app: "instapaper",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.instapaper.com/api/authenticate`,
auth: {
username: `${this.instapaper.$auth.username}`,
password: `${this.instapaper.$auth.password}`,
},
})
},
})
Instapaper uses API keys for authentication. When you connect your Instapaper account, Pipedream securely stores the keys so you can easily authenticate to Instapaper APIs in both code and no-code steps.
See Instapaper Simple Developer API integration docs here.