with imgbb and Exact Mails?
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: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
exact_mails: {
type: "app",
app: "exact_mails",
}
},
async run({steps, $}) {
const data = {
"linkedin_url": `https://www.linkedin.com/in/janesmith/`,
}
return await axios($, {
method: "post",
url: `https://api.exactmails.com/api/v1/email/find-linkedin-email`,
auth: {
username: `${this.exact_mails.$auth.username}`,
password: `${this.exact_mails.$auth.api_key}`,
},
data,
})
},
})