import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flippingbook: {
type: "app",
app: "flippingbook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-tc.is.flippingbook.com/api/v1/auth/me`,
headers: {
Authorization: `Bearer ${this.flippingbook.$auth.api_key}`,
},
})
},
})
Generates a new flipbook from an input PDF file. See the documentation
Locates a specific flipbook using the provided title. See the documentation
Edits an existing flipbook by replacing it with a new input PDF file. See the documentation
FlippingBook uses API keys for authentication. When you connect your FlippingBook account, Pipedream securely stores the keys so you can easily authenticate to FlippingBook APIs in both code and no-code steps.