skipSavingBody

Prevent saving response body in memory for the specific request.

To disable the plugin for all requests use SaveBodyPluginConfig.disabled property:

val client = HttpClient {
    install(SaveBodyPlugin) {
        disabled = true
    }
}

Report a problem