uptime-kuma/extra/push-examples/javascript-fetch/index.js

11 lines
226 B
JavaScript
Raw Normal View History

2023-09-13 12:03:12 +00:00
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
const interval = 60;
const push = async () => {
await fetch(pushURL);
console.log("Pushed!");
};
push();
setInterval(push, interval * 1000);