import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jooble: {
type: "app",
app: "jooble",
}
},
async run({steps, $}) {
const data = {
"location": `{your_location}`,
"keywords": `{your_keywords}`,
}
return await axios($, {
method: "post",
url: `https://jooble.org/api/${this.jooble.$auth.api_key}`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
Jooble uses API keys for authentication. When you connect your Jooble account, Pipedream securely stores the keys so you can easily authenticate to Jooble APIs in both code and no-code steps.