With the Feedbin API, you can build a number of things, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
feedbin: {
type: "app",
app: "feedbin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.feedbin.com/v2/authentication.json`,
auth: {
username: `${this.feedbin.$auth.email}`,
password: `${this.feedbin.$auth.password}`,
},
})
},
})
Feedbin uses API keys for authentication. When you connect your Feedbin account, Pipedream securely stores the keys so you can easily authenticate to Feedbin APIs in both code and no-code steps.