Receive first event
Receive the first event for your Pong by e.g. sending a GET request via curl to your Pong url.
- Curl
- Python
- JavaScript
curl -fsS -o /dev/null https://spo.ng/a0615c72-8c6c-4313-99dc-e7f193a31d5e
import requests
requests.get("https://spo.ng/a0615c72-8c6c-4313-99dc-e7f193a31d5e")
var https = require('https');
https.get('https://spo.ng/a0615c72-8c6c-4313-99dc-e7f193a31d5e').on('error', (err) => {
console.log('Ping failed: ' + err)
});