2

我正在使用 WordPress 的 HTTP API,它有一个 cURL 的包装器(我假设它可以完成 PHP 的 cURL 所做的所有事情)。

尝试检查以下标头If-None-MatchIf-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)
4

1 回答 1

4

我不确定根本原因,但从一些戳中你需要在字符串中引用 etag 值:

'If-None-Match' => '"7efeb402e491989a4f37d8d82aae8946"'
于 2013-01-19T21:06:31.047 回答