import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
codeqr: {
type: "app",
app: "codeqr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.codeqr.io/links/count`,
headers: {
Authorization: `Bearer ${this.codeqr.$auth.oauth_access_token}`,
},
})
},
})
CodeQR uses OAuth authentication. When you connect your CodeQR account, Pipedream will open a popup window where you can sign into CodeQR and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any CodeQR API.
Pipedream requests the following authorization scopes when you connect your account:
qrcodes.read
links.read
tags.read
pages.read
GET
https://app.codeqr.io/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
&
code_challenge={{oauth.token}}
&
code_challenge_method=S256
POST
https://api.codeqr.io/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
&
code_verifier={{oauth.verifier}}
POST
https://api.codeqr.io/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}