import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goqr_me: {
type: "app",
app: "goqr_me",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qrserver.com/v1/create-qr-code/`,
params: {
data: `${this.goqr_me.$auth.data}`,
size: `100x100`,
},
})
},
})
goQR.me uses API keys for authentication. When you connect your goQR.me account, Pipedream securely stores the keys so you can easily authenticate to goQR.me APIs in both code and no-code steps.