Http Request Service
interface HttpRequestService
Author
Udhaya Created on 21-01-2022
Types
Functions
Link copied to clipboard
abstract suspend fun checkPageAvailability(url: String, headers: <Error class: unknown class><String, String>? = null): Boolean
Link copied to clipboard
abstract suspend fun getRawResponse(url: String, headers: <Error class: unknown class><String, String>? = null, followRedirect: Boolean = true): HttpResponse?
Makes Http request
Link copied to clipboard
abstract suspend fun getResponse(url: String, headers: <Error class: unknown class><String, String>? = null): String?
Link copied to clipboard
abstract suspend fun headRawResponse(url: String, headers: <Error class: unknown class><String, String>? = null, followRedirect: Boolean = true): HttpResponse?
Makes Http request
Link copied to clipboard
Link copied to clipboard