import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
beeminder: {
type: "app",
app: "beeminder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.beeminder.com/api/v1/users/me.json`,
params: {
auth_token: `${this.beeminder.$auth.api_token}`,
},
})
},
})
Beeminder uses API keys for authentication. When you connect your Beeminder account, Pipedream securely stores the keys so you can easily authenticate to Beeminder APIs in both code and no-code steps.