reddit アカウントにログインし、スレッドにコメントを投稿するプログラムをいじろうとしています。これまでのところ、私のログインコードは次のとおりです。
DefaultHttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("https://ssl.reddit.com/api/login");
List<NameValuePair> nameValuePairs = new ArrayList<>(4);
nameValuePairs.add(new BasicNameValuePair("user", "username"));
nameValuePairs.add(new BasicNameValuePair("passwd", "password"));
nameValuePairs.add(new BasicNameValuePair("rem", "True"));
nameValuePairs.add(new BasicNameValuePair("api_type", "json"));
try {
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = client.execute(post);
Header header = response.getFirstHeader("set-cookie");
String cookie = header.getValue();
if (cookie.startsWith("reddit_first")) {
System.out.println("Unable to log in.");
} else if (cookie.startsWith("reddit_session")) {
System.out.println("Logged in successfullly.");
CookieStore cs = new BasicCookieStore();
System.out.println("Cookie: " + header.getValue());
BasicClientCookie bcookie = new BasicClientCookie("reddit_session", header.getValue());
bcookie.setDomain("reddit.com");
bcookie.setPath("/");
cs.addCookie(bcookie);
client.setCookieStore(cs);
redditCookie = header;
}
JSONObject obj = (JSONObject) JSONValue.parse(response.getEntity().getContent());
JSONObject json = (JSONObject) obj.get("json");
JSONObject data = (JSONObject) json.get("data");
modHash = data.get("modhash").toString();
} catch (Exception e) {
e.printStackTrace();
}
そして、それは機能します-ログインに成功したことを報告し、modhash を保存します。
コメントを投稿するために、私は持っています:
post = new HttpPost("https://ssl.reddit.com/api/comment");
post.addHeader(redditCookie);
nameValuePairs = new ArrayList<>(4);
nameValuePairs.add(new BasicNameValuePair("api_type", "json"));
nameValuePairs.add(new BasicNameValuePair("text", imgurLink + "\r\n"));
nameValuePairs.add(new BasicNameValuePair("thing_id", thingId));
nameValuePairs.add(new BasicNameValuePair("uh", modHash));
try {
post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
response = client.execute(post);
obj = (JSONObject) JSONValue.parse(response.getEntity().getContent());
System.out.println(obj.toJSONString());
} catch (Exception e) {
e.printStackTrace();
}
ただし、コメントを送信しようとすると、ログインする必要があると表示されます。コメントを投稿するには reddit_session Cookie を送信する必要があることは理解していますが、正しく行っているかどうかはわかりません。