Thanks, but I'd rather not install and figure out how to use Gradle and Maven. Is there something I can just open up in Eclipse (or add a jar to libraries) and have work?
I also don't understand what other tools I could use to try this, I don't want to download curl.
I've done some more poking around with this code:
URL url = new URL("
http://cheifdelphi.com");
HttpURLConnection conn = (HttpURLConnection) (url).openConnection();
conn.setRequestProperty("X-TBA-App-Id", "AntonioPapa:test:v3");
int i = conn.getResponseCode();
System.out.println(i);
If I use the above code and instead try to reach "
chiefdelphi.com" or "
google.com" I get a response code of 200. Meanwhile the TBA main page, "
thebluealliance.com", responds with 403. It doesn't seem to be specifically an API problem.
The library I was trying to use hasn't been updated since July 2014, has something related to this changed since then?
Thanks so much for your help.