diff --git a/extra/push-examples/bash-curl/index.sh b/extra/push-examples/bash-curl/index.sh index 3031255f4..7a93bf31a 100644 --- a/extra/push-examples/bash-curl/index.sh +++ b/extra/push-examples/bash-curl/index.sh @@ -2,9 +2,10 @@ # Filename: index.sh PUSH_URL="https://example.com/api/push/key?status=up&msg=OK&ping=" INTERVAL=60 +HTTP_METHOD="GET" while true; do - curl -s -o /dev/null $PUSH_URL + curl -X $HTTP_METHOD -s -o /dev/null $PUSH_URL echo "Pushed!" sleep $INTERVAL done diff --git a/extra/push-examples/javascript-fetch/index.js b/extra/push-examples/javascript-fetch/index.js index 9d21d0db8..4ead43b35 100644 --- a/extra/push-examples/javascript-fetch/index.js +++ b/extra/push-examples/javascript-fetch/index.js @@ -1,9 +1,10 @@ // Supports: Node.js >= 18, Deno, Bun const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping="; const interval = 60; +const method = "GET"; const push = async () => { - await fetch(pushURL); + await fetch(pushURL, { method }); console.log("Pushed!"); };