java.io.IOException: Server returned HTTP response code: 403 for URL
Internet browsing proposed that it was necessary to indicate the "USER-AGENT" and so I did, but the error remains the same:
Código:
The complete code is:openConnection.addRequestProperty ("User-Agent", "Mozilla / 5.0 (Windows NT 6.1; WOW64) AppleWebKit / 537.36 (KHTML, like Gecko) Chrome / 40.0.2214.91 Safari / 537.36");
Código:
and the error is in:url = cadenaURL + cadenaEndpoint; URLConnection openConnection = new URL(url).openConnection(); openConnection.connect(); is = openConnection.getInputStream(); if ("gzip".equals(openConnection.getContentEncoding())) { is = new GZIPInputStream(is); }
Código:
Someone could help me?is = openConnection.getInputStream();
Thank You, a greeting,