with changes.page and VisualPing?
Emit new event when a new post is created. See the documentation
Get the latest post from Changes Page. See the documentation
Creates a new job that will belong to a given user or workspace. See the docs here
Get the pinned post from Changes Page. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
changes_page: {
type: "app",
app: "changes_page",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.changes_page.$auth.subdomain}.changes.page/latest.json`,
})
},
})
VisualPing is a tool that lets you monitor web pages for changes. Using its API with Pipedream, you can automate reactions to those changes. For instance, you can set up workflows that notify you or your team when specific parts of a web page update, or use changes to trigger downstream actions in other apps. Pipedream's serverless platform enables you to connect VisualPing with a vast array of apps to create custom, automated workflows without writing a lot of code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
visualping: {
type: "app",
app: "visualping",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://account.api.visualping.io/describe-user`,
headers: {
Authorization: `Bearer ${this.visualping.$auth.oauth_access_token}`,
},
})
},
})