class LoggingInterceptor implements Interceptor {
@Override public Response intercept(Chain chain) throws IOException {
Request request = chain.request();
long t1 = System.nanoTime();
Log.d("OkHttp", String.format("Sending request %s on %s%n%s",
request.url(), chain.connection(), request.headers(), request.body(),request.toString()));
Response response = chain.proceed(request);
long t2 = System.nanoTime();
Log.d("OkHttp", String.format("Received response for %s in %.1fms%n%s",
response.request().url(), (t2 - t1) / 1e6d, response.headers()));
return response;
}
}
в эмуляторе что меньше 2 кб отправляется
с телефона не уходит (размер 30 -50 кб) пишет I/System.out: java.io.IOException: unexpected end of stream on http://
что может быть не подскажите?
RequestBody.create(MediaType.parse("application/octet-stream"),
baos.toByteArray())
так получается
, а что может быть php не видит пост запрос, нет файлов и параметров?
в эмуляторе что меньше 2 кб отправляется
с телефона не уходит (размер 30 -50 кб) пишет I/System.out: java.io.IOException: unexpected end of stream on http://
что может быть не подскажите?