HttpClientProvider

Provides a singleton instance of an HttpClient configured with the CIO engine and JSON serialization settings.

This object uses lazy initialization to ensure the client is only created when needed. The client is configured with the following JSON settings:

  • ignoreUnknownKeys: Unknown JSON keys are ignored during deserialization.

  • isLenient: Allows lenient parsing of JSON.

  • prettyPrint: Pretty prints the JSON output.

Example usage:

val client = HttpClientProvider.client

Properties

Link copied to clipboard
val client: HttpClient

Singleton HttpClient instance configured with the CIO engine and JSON serialization settings.