httpurlconnection

HttpURLConnection Request to the 1c web service with a login from android

I made a request to the 1c web service, it has an authorization window, how do I send my username and password along with th ... ection.setReadTimeout(1000); httpURLConnection.setConnectTimeout(1000); httpURLConnection.connect();

HTTP CONNECT processing on the proxy server

Hello! I write my proxy server in C++. I studied all the man's and standards. I implemented support for absolutely all reque ... } } else if ( bytes_recv == 0 ) break; else return -4; } } }

Post request using retrofit

You need to create a POST request with sending a username,password and receiving a token, I was recommended to retrofit, sinc ... } else { // error response, no access to resource? } } Yes errors starting with call. enqueue

Encoding of Russian letters in HTML received via URL

After working out the code, the received data is written to the database, but in the form of ���������. How do I specify the ... } catch (Exception e) { e.printStackTrace(); } } }).start();

Working with HttpURLConnection in Android, getting information by GET

You need to get the result of the GET query in Android and return the value from the method. It's decided! Thank you all for ... () : ""; return result; } catch (Exception e) { return e.toString(); } }