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