methanol icon indicating copy to clipboard operation
methanol copied to clipboard

⚗️ Lightweight HTTP extensions for Java

Results 6 methanol issues
Sort by recently updated
recently updated
newest added

Response modification is an expected usage of interceptors. However, JDK provides no way of creating responses from scratch (`HttpResponse` is an interface, and it has no builder). Moving [`ResponseBuilder` ](https://github.com/mizosoft/methanol/blob/master/methanol/src/main/java/com/github/mizosoft/methanol/internal/extensions/ResponseBuilder.java)...

Hi, We're looking at the feature set this library provides and we noticed that currently only in memory and on disk caching stores are supported. Are there any plans to...

1. Fixes gradle error 2. Adds util method to parse response body differently depending on ResponseInfo contents

Methanol runs perfectly fine in a JVM app, but produces the following exception when running inside a native image binary: ``` java.lang.UnsupportedOperationException: unsupported encoding: gzip ``` My assumption is that...

An HTTP response can nominate a set of headers pertaining to the initiating request, using the Vary header, to be matched against by the incoming request before being served by...