So, I am working with the Signpost OAuth library for Java. I am facing some complications using the Apache Commons HTTP library with it. Take a look at the following code:
URL url = new URL("http://api.neoseeker.com/forum/get_pm_counts.json"); HttpRequest request = (HttpRequest) url.openConnection(); consumer.sign(request); request.connect(); System.out.println("Response: " + request.getResponseCode() + " " + request.getResponseMessage());
This is a take from this example . You can see that request used as an HttpURLConnection , but since I will use the Apache Commons HTTP library, I changed it to an HttpRequest object. Now I get errors when I call connect() , getResponseCode() and getResponseMessage() because these functions are for HttpURLConnection . What functions from HttpRequest would I use so that I can get the code to compile and run correctly? Thanks!
source share