CURL sample file
curl_webhook_debug_sample.curl
254 B
text/vnd.curl
SHA256 verified
File details
Filename
curl_webhook_debug_sample.curlSize254 B (254 bytes)
MIME type
text/vnd.curlExtension
.curlSHA256
ed25896c0a392334fd0def879729a09d28ada10950ff3519889b3e71a0188a93Download commands
Use in scripts and tests
curl -L -o curl_webhook_debug_sample.curl \
https://samplefile.com/samples/download/code/curl/curl_webhook_debug_sample.curl/
wget -O curl_webhook_debug_sample.curl \
https://samplefile.com/samples/download/code/curl/curl_webhook_debug_sample.curl/
import requests
url = "https://samplefile.com/samples/download/code/curl/curl_webhook_debug_sample.curl/"
resp = requests.get(url)
with open("curl_webhook_debug_sample.curl", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/code/curl/curl_webhook_debug_sample.curl/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("curl_webhook_debug_sample.curl", buf);
# Download and verify SHA256
curl -L -o curl_webhook_debug_sample.curl https://samplefile.com/samples/download/code/curl/curl_webhook_debug_sample.curl/
echo "ed25896c0a392334fd0def879729a09d28ada10950ff3519889b3e71a0188a93 curl_webhook_debug_sample.curl" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/code/curl/curl_webhook_debug_sample.curl/").content
assert hashlib.sha256(data).hexdigest() == "ed25896c0a392334fd0def879729a09d28ada10950ff3519889b3e71a0188a93"
More CURL files
Other CURL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
curl_api_replay_sample.curl |
331 B | be8e93038fe82245… |
Download |
curl_cookie_session_replay_sample.curl |
230 B | 97b801dca2be45b6… |
Download |
curl_retry_idempotency_sample.curl |
272 B | ec3daf4143fb32ca… |
Download |
Learn more