我正在玩耍并尝试学习 API 如何在 java 中工作,目前正在与 Reddit 搞混:https ://github.com/karan/jReddit
我正在尝试的代码很好用:https ://github.com/karan/jReddit/blob/master/src/main/java/examples/UpvoteExample.java
我想这是进行连接/登录的地方(如果我错了,请纠正我):
User user = new User(restClient, Authentication.getUsername(), Authentication.getPassword());
user.connect();
Submissions subms = new Submissions(restClient, user);
MarkActions submAct = new MarkActions(restClient, user);
是否可以通过上面代码中的代理进行连接?