with Instasent and imgbb?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instasent: {
type: "app",
app: "instasent",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instasent.com/organization/account`,
headers: {
Authorization: `Bearer ${this.instasent.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
The imgbb API offers a straightforward solution for uploading images to the imgbb platform. Once uploaded, images can be shared across the web with ease, thanks to the provided URL links. This opens up a world of possibilities for automating image storage and distribution workflows on Pipedream. Whether you're managing a content-heavy blog, streamlining an eCommerce site with dynamic product images, or automating social media postings, using the imgbb API with Pipedream can save time and reduce manual effort.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imgbb: {
type: "app",
app: "imgbb",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.imgbb.com/1/upload`,
params: {
key: `${this.imgbb.$auth.api_key}`,
image: `R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7`,
name: ``,
},
})
},
})