java.io.EOFException: End of input at line 2 column 5
I called web service using Retrofit2 but onResponse is not called and the onFailure is called Despite of the operation of the service is succeeded on the server side perfectly
Request
{
"mode":"JainSanghViewMember",
"reg_par_id":"11" }
My code is
interface APIInterface {
@FormUrlEncoded
@POST("webservice.php")
fun viewUser(@Field("mode") mode: String,@Field("reg_par_id") reg_par_id:String): Call
}
object RetrofitClient {
var retrofit: Retrofit? = null
fun...