I’m new to android programming, and I wanted to make a small program to download strings from a specific API-URL. (I’m not new to the programming overall). Now I’m stuck with the following code, just to download my string from url: String urlToDownloadToken = baseUrl + "?action=login&username=michael&password=qwerty123"; Object taskResult = new DownloadString().execute(urlToDownloadToken); The implementation of […]
The post Downloading with HttpClient is always returning empty response appeared first on BlogoSfera.