import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
quickchart: {
type: "app",
app: "quickchart",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://quickchart.io/qr`,
params: {
text: `Here's my text`,
},
})
},
})
QuickChart uses API keys for authentication. When you connect your QuickChart account, Pipedream securely stores the keys so you can easily authenticate to QuickChart APIs in both code and no-code steps.