This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.jsoup.Jsoup; | |
| import org.jsoup.nodes.Element; | |
| import org.jsoup.select.Elements; | |
| public class Main { | |
| public static void main(String[] args) { | |
| //Create a new RedditClient and log us in! | |
| RedditClient client = new RedditClient("hutsboR", "MyPassword!"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.IOException; | |
| import java.net.MalformedURLException; | |
| import com.gargoylesoftware.htmlunit.BrowserVersion; | |
| import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException; | |
| import com.gargoylesoftware.htmlunit.WebClient; | |
| import com.gargoylesoftware.htmlunit.html.HtmlForm; | |
| import com.gargoylesoftware.htmlunit.html.HtmlPage; | |
| public class RedditClient { |