import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
qr_api: {
type: "app",
app: "qr_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://qrapi.io/v2/qrcode/url`,
headers: {
"accept": `image/png`,
},
params: {
apikey: `${this.qr_api.$auth.api_key}`,
url: `https://pipedream.com`,
},
})
},
})
Create an Email QR Code. See the documentation
Create a Google Maps QR Code. See the documentation
Create a Phone Call QR Code. See the documentation
Create a SMS QR Code. See the documentation
Create a Text QR Code. See the documentation
QR API uses API keys for authentication. When you connect your QR API account, Pipedream securely stores the keys so you can easily authenticate to QR API APIs in both code and no-code steps.