HTTP sample file
http_api_replay_request_sample.http
271 B
application/octet-stream
SHA256 verified
File details
Filename
http_api_replay_request_sample.httpSize271 B (271 bytes)
MIME type
application/octet-streamExtension
.httpSHA256
500be13edc6d636e3e6f840af102081e7fc26af26098699d51944dfc4af45727Download commands
Use in scripts and tests
curl -L -o http_api_replay_request_sample.http \
https://samplefile.com/samples/download/code/http/http_api_replay_request_sample.http/
wget -O http_api_replay_request_sample.http \
https://samplefile.com/samples/download/code/http/http_api_replay_request_sample.http/
import requests
url = "https://samplefile.com/samples/download/code/http/http_api_replay_request_sample.http/"
resp = requests.get(url)
with open("http_api_replay_request_sample.http", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/code/http/http_api_replay_request_sample.http/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("http_api_replay_request_sample.http", buf);
# Download and verify SHA256
curl -L -o http_api_replay_request_sample.http https://samplefile.com/samples/download/code/http/http_api_replay_request_sample.http/
echo "500be13edc6d636e3e6f840af102081e7fc26af26098699d51944dfc4af45727 http_api_replay_request_sample.http" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/code/http/http_api_replay_request_sample.http/").content
assert hashlib.sha256(data).hexdigest() == "500be13edc6d636e3e6f840af102081e7fc26af26098699d51944dfc4af45727"
More HTTP files
Other HTTP Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
http_graphql_mutation_sample.http |
271 B | 28dcb8359626c3df… |
Download |
http_signed_request_verification_sample.http |
572 B | b064e1f85acf88ce… |
Download |
http_webhook_signature_validation_sample.http |
295 B | a3c57e06daf5e38e… |
Download |
Learn more