Could anyone explain me why "If modified-Since" doesn't work in my http client...?
I check what I send in httpbin.org:
{
"url": "http://www.httpbin.org/get",
"headers": {
"Content-Length": "",
"Connection": "keep-alive",
"Accept": "*/*",
"Host": "www.httpbin.org",
"If-Modified-Since": "Mon, 12 Nov 2012 18:00:00 GMT",
"Content-Type": ""
},
"args": { },
"origin": "89.70.183.105"
}
But I still get every file. "If-modified-since" simply doesn't work. Maybe it's not implemented in servers? If so, could anyone point me server that has implemented this header? Or explain what I'm doing wrong?
Thanks for help