09/11/24 00:35:00 kWRypNP30
これ認証失敗すんだけどどこが間違ってんのか教えてくれませんか?
未承諾広告様 ◆VtM3blNDX/C6 様でも誰でもいいので。
SESSION-ID=Monazilla/1.00:c=m,bpKey_yepppppppppppppppppppppppppppppppppppppp…
こうなっちゃいますが
適当.まるログイン("メルアド<>パス");
public String まるログイン(String まるアカウント) {
String[] まるアカウント分離 = まるアカウント.split("<>");
String レスポンス = null;
try {
String 投稿先 = "URLリンク(2chv.tora3.net)";
URL 接続URL;
if (プロキシホスト == null) {
接続URL = new URL(投稿先);
} else {
接続URL = new URL("http", プロキシホスト, プロキシポート, 投稿先);
}
URLConnection 接続 = 接続URL.openConnection();
接続.setRequestProperty("Accept", "*/*");
接続.setRequestProperty("User-Agent", "DOLIB/1.00");
接続.setRequestProperty("Referer", "URLリンク(2chv.tora3.net)");
接続.setRequestProperty("X-2ch-UA", "Monazilla/1.00");
接続.setRequestProperty("Connection", "close");
// Accept-Encoding: gzip, deflate
接続.setDoOutput(true);
PrintWriter 出力 = new PrintWriter(接続.getOutputStream());
出力.print("ID=" + URLEncoder.encode(まるアカウント分離[0] , "Shift_JIS") + "&PW=" + URLEncoder.encode(まるアカウント分離[1] , "Shift_JIS"));
System.out.println("ID=" + URLEncoder.encode(まるアカウント分離[0] , "Shift_JIS") + "&PW=" + URLEncoder.encode(まるアカウント分離[1] , "Shift_JIS"));
出力.close();
BufferedReader 入力 = new BufferedReader(new InputStreamReader(接続.getInputStream()));
String 行;
while ((行 = 入力.readLine()) != null) {
System.out.println(行);
}
入力.close();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}