with Codemagic and CaptureKit?
Capture a high-quality image of any webpage. See the documentation
Create a variable in the specified workflow. See the documentation
Extract structured data from any webpage, including metadata, links, and raw HTML. See the documentation
Codemagic API offers a way to automate your mobile app development and delivery processes. By integrating with Pipedream, you can invoke workflows that react to events in your Git repository, automate build tasks, deploy applications, send notifications, and more. It's a powerful ally for developers looking to streamline the CI/CD pipeline for their mobile applications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
codemagic: {
type: "app",
app: "codemagic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.codemagic.io/apps`,
headers: {
"x-auth-token": `${this.codemagic.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
capturekit: {
type: "app",
app: "capturekit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.capturekit.dev/capture`,
headers: {
"x-access-key": `${this.capturekit.$auth.access_key}`,
},
params: {
url: `https://pipedream.com`,
},
})
},
})