I have the following CURL request Can anyone please confirm me what would be the subesquest HTTP Request
      curl -u "Login-dummy:password-dummy" -H "X-Requested-With: Curl" "https://qualysapi.qualys.eu/api/2.0/fo/report/?action=list" -k
Will it be something like ?
    String url = "https://qualysapi.qualys.eu/api/2.0/fo/report/";
    URL obj = new URL(url);
    HttpURLConnection con = (HttpURLConnection) obj.openConnection();
    // optional default is GET
    con.setRequestMethod("GET"); ..... //incomplete
Can anyone be kind enough to help me convert the above curl request completely to httpreq.
Thanks in advance.
Suvi
 
     
     
     
     
    