2019/1/6初探JAVA京東httpclient上陸(スキャンコード上陸予備編)
3249 ワード
前編では、京東がいつでも可変性を得ることを考慮して、ここでは長いことを考慮して、1つのスキャンコードを採用して上陸して、上陸した後、長期にわたって接続を維持して基本的に1週間に1回上陸すればいいと話しています.
ダイレクトコード
大神は噴き出さないで、コードは比較的に急いでいます!
技術の交流があってQQをプラスすることができます
ダイレクトコード
public static HttpClientUtil incodelogin(HttpClientUtil httpClient,UuserJDinfo uuserJDinfo) throws InterruptedException, IllegalStateException, IOException{
boolean issmlogin =true;
while (issmlogin) {//
Document doc = Jsoup.parse(httpClient.doGet("https://passport.jd.com/new/login.aspx"));
Elements elements = doc.select("form[id=formlogin] input[type=hidden]");
//
Map map = new HashMap();
String k, v;
for (Element input : elements) {
k = input.attr("name");
v = input.attr("value");
if (StringUtils.isNotBlank(k)) {
map.put(k, v);
// System.out.println(input);
}
}
// ,PC
HttpResponse response =httpClient.getForResponse("https://qr.m.jd.com/show?appid=133&size=147&t=" + Math.random(),null);
InputStream inputStream = response.getEntity().getContent();
String name = " .png";
saveToImgByInputStream(inputStream,"D:\\",name); //
String token="";
// wlfstk_smdl
List cookies = httpClient.getCookieStore().getCookies();
if (!cookies.isEmpty()) {
for (int i = 0; i < cookies.size(); i++) {
System.out.println(cookies.get(i).toString());
if(cookies.get(i).toString().indexOf("wlfstk_smdl")>-1){
String sss = cookies.get(i).toString().substring(cookies.get(i).toString().indexOf("value:")+7,cookies.get(i).toString().length());
token =sss.substring(0,sss.indexOf("]"));
System.out.println(token);
}
}
}
//
Map head = new HashMap();
head.put("Referer", "https://passport.jd.com/new/login.aspx?ReturnUrl=https%3A%2F%2Fwww.jd.com%2F");
//
String ticket ="";
boolean isjt = true;
int isgq=0;
while (isjt) {
String url ="https://qr.m.jd.com/check?callback=jQuery7661835&appid=133&token="+token+"&_="+new Date().getTime();
String sss= httpClient.doGet(url,null,head);
if(sss.indexOf("ticket") >-1){
ticket=sss.substring(sss.indexOf("ticket\" : \"")+11,sss.length()-4);
isjt =false;
}else if(sss.indexOf(" ") >-1){
isgq=1;
}
if(isgq==1){
break;
}
Thread.sleep(2000);
}
// ck
String urlck ="https://passport.jd.com/uc/qrCodeTicketValidation?t="+ticket;
httpClient.doGet(urlck,null,head);
//
if(islogin(httpClient)){
issmlogin =false;
}else{
issmlogin =true;
}
}
return httpClient;
}
大神は噴き出さないで、コードは比較的に急いでいます!
技術の交流があってQQをプラスすることができます