-
Popular clients handle LF, CR, and CRLF as newlines. HTTP only defines CRLF.
Previously: https://lists.w3.org/Archives/Public/ietf-http-wg/2014JulSep/0123.html.
-
## Warning
The Warning header field is going to be deprecated in the next http semantic. See
https://tools.ietf.org/html/draft-ietf-httpbis-cache-06#section-5.5
and the http mailing list
@w…
-
It could be interesting to support cookies. Thinking it should be per connection though, with cookies being forwarded to the owner process so that it can keep them elsewhere if needed.
essen updated
4 years ago
-
The phrase "header field" is no longer the accepted form. The generic form is "message field".
This matters more for Digest, which is a good candidate for a trailer.
-
### Facts:
1. `cy.request` should persist cookies received in response headers. It does it just fine except this used case described below.
2. Google just published a new update to chrome browse…
-
https://tools.ietf.org/html/draft-ietf-httpbis-header-structure-15
**Nits**
+ "individual individual" (4.2.)
**Clarification**
+ re: "lists can have their members split across multiple instan…
-
Hello,
The SameSite cookie directive has three options: Strict, Lax and None:
https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies#SameSite_cookies
https://tools.ietf.org/id/draft-ietf-htt…
-
Chrome 80 is changing the default value for the SameSite HTTPCookie attribute to Lax on Feb 4, 2020. Currently POCO's HTTPCookie code does not support setting the SameSite attribute (RFC 6265bis http…
-
From an interop discussion with @martinduke and @kazuho.
HTTP/1.1 [requires](https://httpwg.org/http-core/draft-ietf-httpbis-semantics-latest.html#header.host) the presence of a Host header:
> A c…
-
When using the alias `axios.delete`, the payload doesn't get sent with the API call if you don't specify `data`.
You have to do:
```javascript
axios.delete(URL, {
data: { foo: 'bar' }
})
```
…