我正在使用 WordPress 的 HTTP API,它有一个 cURL 的包装器(我假设它可以完成 PHP 的 cURL 所做的所有事情)。
尝试检查以下标头If-None-Match
并If-Modified-Since
通过 API 应返回:
Status: 304 Not Modified
相反,我得到了一个Status: 200 OK
从命令行测试 curl 工作正常并返回正确的状态,这有效:
curl -i https://api.github.com/users/wycks -H 'If-None-Match: "7efeb402e491989a4f37d8d82aae8946"'
在 PHP 中输入相同的 ETag'If-None-Match' => '7efeb402e491989a4f37d8d82aae8946'
不起作用。
这是我对 API 的 PHP 请求:
array
'method' => string 'HEAD' (length=4)
'timeout' => int 5
'redirection' => int 0
'httpversion' => string '1.0' (length=3)
'user-agent' => string 'WordPress/3.5; http://dev.local/Foo15' (length=37)
'blocking' => boolean true
'headers' =>
array
'Accept-Encoding' => string 'deflate;q=1.0, compress;q=0.5' (length=29)
'cookies' =>
array
empty
'body' => null
'compress' => boolean false
'decompress' => boolean true
'sslverify' => boolean false
'stream' => boolean false
'filename' => null
'If-None-Match' => string '7efeb402e491989a4f37d8d82aae8946' (length=32)
'Cache-Control' => string 'must-revalidate' (length=15)
'_redirection' => int 0
'ssl' => boolean true
'local' => boolean false
boolean true
和错误的反应:
response' =>
array
'code' => int 200
'message' => string 'OK' (length=2)