Http Client Provider
object 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
Content copied to clipboard