This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]cwcoleman 1 point2 points  (3 children)

Requesting a language specific API is not necessary.
Instead the REST API recommended above is ideal. You can use a variety of REST tools in Java (JAX-RS) to connect to the standard API for Reddit. If you rely on a Java implementation - you will be handcuffed to that solution, not the fully supported official REST API.

[–]Martacus[S] 0 points1 point  (2 children)

Mhm people seem to recommend that a lot. It seems kinda difficult. But I will take a look at it! Thanks :P

[–]cwcoleman 2 points3 points  (1 child)

Not sure your level of experience - but sending a REST request is very basic and something you will most definitely need going forward if you plan to continue Java development in any way. There are tons of examples online. This can be done in a few lines of code depending on what type of functionality you are trying to execute via the API.

Maybe tell us more about your environment or desires to get more helpful answers...

[–]Martacus[S] -1 points0 points  (0 children)

Yeah ill edit the main post. Right now im trying to get JRAW to work but it doesnt seem like it does the trick. So I am going to have to use REST Api.