Functions

Link copied to clipboard
abstract suspend fun get(url: String, params: Map<String, String>, headers: Map<String, String>): Expected<HttpRequestError, ByteArray>
Link copied to clipboard
abstract suspend fun post(url: String, body: ByteArray, headers: Map<String, String>): Expected<HttpRequestError, ByteArray>
Link copied to clipboard
abstract suspend fun postWithStreamResult(    url: String,     body: ByteArray,     headers: Map<String, String>,     queries: Map<String, String>): Expected<String, InputStream>