import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webspellchecker: {
type: "app",
app: "webspellchecker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://svc.webspellchecker.net/api?cmd=get_info`,
params: {
cmd: `get_info`,
customerid: `${this.webspellchecker.$auth.service_id}`,
},
})
},
})
WebSpellChecker uses API keys for authentication. When you connect your WebSpellChecker account, Pipedream securely stores the keys so you can easily authenticate to WebSpellChecker APIs in both code and no-code steps.