Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im struggling getting java submitting POST requests over HTTPS

Code used is here

     try{
        Response res = Jsoup.connect(LOGIN_URL)
    .data("username", "blah", "password", "blah")

    .method(Method.POST)
  .userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0")
                .header("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8")
                .execute();
        System.out.println(res.body());
        System.out.println("Code " +res.statusCode());

        }
        catch (Exception e){
            System.out.println(e.getMessage()); 
        }

and also this

Document doc = Jsoup.connect(LOGIN_URL)
  .data("username", "blah")
  .data("password", "blah")
  .userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0")
        .header("Content-type", "application/x-www-form-urlencoded")
         .method(Method.POST)
  .timeout(3000)
  .post();
            

Where LOGIN_URL = https://xxx.com/Login?val=login

When used over HTTP it seems to work, HTTPS it doesnt, But doesnt throw any exceptions

How can I POST over HTTPS

Edit:

seems there is a 302 redirect involved when the server gets a POST over HTTPS (which doesnt happen over http) How can I use jsoup to store the cookie sent with the 302 to the next page ?

share|improve this question
Can you check the server log? Likely it's a problem with the server certificate. You can try to import it and see if is solves your problem – Raffaele Mar 4 at 20:42
Added the key and put this in the code System.setProperty("javax.net.ssl.trustStore", "sitename.jks"); still not working as expected – user1281385 Mar 4 at 20:53
making similar code in PHP, Cookies between requests need to be handled (302 redirect after the post) How do i enable this in jsoup ? – user1281385 Mar 4 at 20:57
Use followRedirects before execute() – Raffaele Mar 4 at 21:12
1  
i have faced the same issue. then i have used HttpURLConnection and it works. if u want to use HttpURLConnection i can show u what i have done. – Shoshi Mar 4 at 23:55
show 9 more comments

1 Answer

up vote 2 down vote accepted

this is my code:

URL form = new URL(Your_url);
connection1 = (HttpURLConnection)form.openConnection();
connection1.setRequestProperty("Cookie", your_cookie);

connection1.setReadTimeout(10000);
StringBuilder whole = new StringBuilder();

BufferedReader in = new BufferedReader(
        new InputStreamReader(new BufferedInputStream(connection1.getInputStream())));
String inputLine;
while ((inputLine = in.readLine()) != null)
     whole.append(inputLine);
     in.close();
Document doc = Jsoup.parse(whole.toString());
String title = doc.title();

i have used this code to get the title of the new page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.