httpbin icon indicating copy to clipboard operation
httpbin copied to clipboard

/headers changing header capitalization.

Open shadycuz opened this issue 4 years ago • 0 comments

This one cost me like 3 hours of debugging my application 😆

curl -X GET "https://httpbin.org/headers" -H "TestHeader: TestValue"
{
  "headers": {
    "Accept": "*/*", 
    "Host": "httpbin.org", 
    "Testheader": "TestValue", 
    "User-Agent": "curl/7.58.0", 
    "X-Amzn-Trace-Id": "Root=1-6053203b-2ca1ce7744e6a29f58f59021"
  }
}

shadycuz avatar Mar 18 '21 09:03 shadycuz