Skip to content
#

http-client

Here are 1,570 public repositories matching this topic...

panagiks
panagiks commented Apr 20, 2021

🐣 Is your feature request related to a problem? Please describe.
We had a report in aiohttp-session (see aio-libs/aiohttp-session#574) that a user submitting a 'large' cookie had the cookie dropped by the receiving browser.

According to RFC 6265 - section 6.1:

General-use user agents SHOULD
provide each of the following minimum

node-fetch
trustin
trustin commented Jun 3, 2021

A user often binds on a loopback port to serve internal use only requests. It is currently done with port() method:

Server
  .builder()
  .port(new InetSocketAddress("127.0.0.1", 8080))
  ...

It could be useful to have a shortcut method loopbackPort(int):

Server
  .builder()
  .loopbackPort(8080)
  .loopbackPort(9090, SessionProtocol.HTTP, SessionProtocol.

Improve this page

Add a description, image, and links to the http-client topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the http-client topic, visit your repo's landing page and select "manage topics."

Learn more