I am playing around and trying to learn how API works in java, currently messing around with the Reddit one: https://github.com/karan/jReddit
Code that I am trying out which works just fine: https://github.com/karan/jReddit/blob/master/src/main/java/examples/UpvoteExample.java
I guess that this is where the connection/login is made (correct me if I am wrong):
User user = new User(restClient, Authentication.getUsername(), Authentication.getPassword());
user.connect();
Submissions subms = new Submissions(restClient, user);
MarkActions submAct = new MarkActions(restClient, user);
Would it be possible to connect via a Proxy in the code above?
You can try this