Running with an insecure SECRET_KEY value, do not use in production.

Javascript

Below is an example of making an HTTP request to Scheduler CALINFO IT from Node.js.

var https = require('https');
https.get('https://healthchecks.app.calinfo-nc.com/ping/your-uuid-here').on('error', (err) => {
    console.log('Ping failed: ' + err)
});

You can also send pings from a browser environment. Scheduler CALINFO IT sets the Access-Control-Allow-Origin:* CORS header, so cross-domain AJAX requests work.

var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://healthchecks.app.calinfo-nc.com/ping/your-uuid-here', true);
xhr.send(null);