JWT sample file
jwt_expired_refresh_token_sample.jwt
351 B
application/octet-stream
SHA256 verified
File details
Filename
jwt_expired_refresh_token_sample.jwtSize351 B (351 bytes)
MIME type
application/octet-streamExtension
.jwtSHA256
11af1edda374aa502a0dd8d71cb96dce5e9eb7c181039fe0bcf9307b3d7cce95Download commands
Use in scripts and tests
curl -L -o jwt_expired_refresh_token_sample.jwt \
https://samplefile.com/samples/download/data/jwt/jwt_expired_refresh_token_sample.jwt/
wget -O jwt_expired_refresh_token_sample.jwt \
https://samplefile.com/samples/download/data/jwt/jwt_expired_refresh_token_sample.jwt/
import requests
url = "https://samplefile.com/samples/download/data/jwt/jwt_expired_refresh_token_sample.jwt/"
resp = requests.get(url)
with open("jwt_expired_refresh_token_sample.jwt", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/jwt/jwt_expired_refresh_token_sample.jwt/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("jwt_expired_refresh_token_sample.jwt", buf);
# Download and verify SHA256
curl -L -o jwt_expired_refresh_token_sample.jwt https://samplefile.com/samples/download/data/jwt/jwt_expired_refresh_token_sample.jwt/
echo "11af1edda374aa502a0dd8d71cb96dce5e9eb7c181039fe0bcf9307b3d7cce95 jwt_expired_refresh_token_sample.jwt" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/jwt/jwt_expired_refresh_token_sample.jwt/").content
assert hashlib.sha256(data).hexdigest() == "11af1edda374aa502a0dd8d71cb96dce5e9eb7c181039fe0bcf9307b3d7cce95"
More JWT files
Other JWT Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
jwt_hs256_access_token_sample.jwt |
365 B | 210386f5a7b43d07… |
Download |
jwt_invalid_signature_sample.jwt |
347 B | 2ac8f2d916dba4c7… |
Download |
jwt_service_claims_token_sample.jwt |
500 B | ed5020bec3c736aa… |
Download |